题解 | #统计输入正数个数#5.6
统计输入正数个数
https://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...... //思路:用a来判断是否跳出循环 //优化 用ture 来循环 用break跳出循环 int a=0; while (a == 0){ int b =scanner.nextInt(); if (b> 0) { count += 1; }else{ a=1; } } System.out.println(count); } }