Guest User

Untitled

a guest
Jul 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class Lab6_Ex3
  5. {
  6. public static void main (String [] args)
  7. {
  8. Scanner input = new Scanner (System.in);
  9.  
  10. int x;
  11. int sum = ' ';
  12.  
  13. System.out.print("Input a number: ");
  14. x = input.nextInt();
  15.  
  16. while ( x != 0 )
  17. {
  18. sum += x;
  19.  
  20. System.out.println("Output: " + x);
  21.  
  22. System.out.print("Input a number: ");
  23. x = input.nextInt();
  24.  
  25. }
  26.  
  27. }
  28. }
Add Comment
Please, Sign In to add comment