提示運(yùn)行成功,輸出錯(cuò)誤? 我輸出是“它是個(gè)3位的數(shù)”啊
public class HelloWorld{
? ? public static void main(String[] args){
? ? ? ? int num = 999;
? ? ? ? int count = 0;
? ? ? ? if(num>=0&&num<=999999999){
? ? ? ? ? ? for(;num!=0;count++){
? ? ? ? ? ? ? ? num=num/10;
? ? ? ? ? ? }
? ? ? ? ? ? System.out.println("它是個(gè)"+count+"位的數(shù)");
? ? ? ? }
? ? }
}
2018-09-13
你少了感嘆號(hào)