Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class anime {
  3. public static void main(String[] args) {
  4. Scanner scan = new Scanner(System.in);
  5. int n = scan.nextInt();
  6. int i =0;
  7. while (n!=0) {
  8. n = scan.nextInt();
  9. i++;
  10.  
  11. }
  12. System.out.println(i);
  13.  
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement