bar1 = store1/1000;
System.out.print("Store 1: ");
for(int i = 1; i <= bar1; i++)
System.out.print("*");
如何显示“*”的数字向上或向下舍入到最接近的千位数。现在它只是向下舍入。
答案 0 :(得分:1)
使用
bar1 = (store1+500)/1000;
System.out.print("Store 1: ");
for(int i = 1; i <= bar1; i++)
System.out.print("*");
答案 1 :(得分:1)
使用此代码:
double store1 = 1095;
long bar1 = Math.round(store1 / 1000);
// int bar1 = store1/1000;
System.out.print("Store 1: ");
for (int i = 1; i <= bar1; i++)
System.out.print("*");
或者如果stre 1是int并且您无法更改它,则可以使用:
int store1 = 1095;
long bar1 = Math.round(((double)store1) / 1000);
// int bar1 = store1/1000;
它会将store1 / 1000的值四舍五入到最近的1000。