问答详情
源自:4-15 编程练习

请问大佬这为什么是运行成功输出错误呢

public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
if(num>=1){  
    num=num/10; 
    count=count+1;  
    }  
    if(count<100&&count>=10)  
    System.out.println("它是个"+count+"位的数! ");
     }}


提问者:摩西摩西gaga 2019-12-16 12:20

个回答

  • 小杨111
    2019-12-16 13:57:48

    count<100&&count>=10  因为你这个程序运行结果压根就没有输出  运行成功只是没报错而已   结果是错的