gpt4 book ai didi

java - 如何显示星号的数量到最接近的千位?

转载 作者:行者123 更新时间:2023-12-02 04:57:34 24 4
gpt4 key购买 nike

    bar1 = store1/1000;
System.out.print("Store 1: ");
for(int i = 1; i <= bar1; i++)
System.out.print("*");

如何显示“*”的数量向上或向下舍入到最接近的千位。现在它只是向下舍入。

最佳答案

使用

bar1 = (store1+500)/1000;
System.out.print("Store 1: ");
for(int i = 1; i <= bar1; i++)
System.out.print("*");

关于java - 如何显示星号的数量到最接近的千位?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28622776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com