提示運行成功,輸出錯誤? 我輸出是“它是個3位的數”啊
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("它是個"+count+"位的數");
? ? ? ? }
? ? }
}
2018-09-13
你少了感嘆號