题解 | #统计输入正数个数#

统计输入正数个数

http://www.nowcoder.com/practice/3266386e460a4e219d6b7d0bed2065b9

import java.util.*;

public class Main { public static void main(String[] args) { int count = 0; Scanner scanner = new Scanner(System.in);

    //write your code here......
   
 //注意把变量放进循环里
        while(true){
             int a=scanner.nextInt();
            if(a>0){
        count++;
            }else{
       break;
                    }
        }
   
System.out.println(count);
}

} //写个死循环一直判断,错误就退出

全部评论

相关推荐

06-02 15:53
阳光学院 Java
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务