题解 | #统计输入正数个数#
统计输入正数个数
http://www.nowcoder.com/practice/3266386e460a4e219d6b7d0bed2065b9
public class Main {
public static void main(String[] args) {
int count = 0;
Scanner scanner = new Scanner(System.in);
while(scanner.hasNext()==true){
if(scanner.nextInt()>0){
count+=1;
}
else{
break;
}
}
System.out.println(count);
//write your code here......
}
}