Advertisement
deyanivanov966

03. Sum Numbers

Apr 1st, 2021
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class SumNumbers {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.  
  7.         int N = Integer.parseInt(scanner.nextLine());
  8.         int sum = 0;
  9.  
  10.         while (sum<N){
  11.             int currentNum=Integer.parseInt(scanner.nextLine());
  12.             sum+=currentNum;
  13.         }
  14.         System.out.println(sum);
  15.     }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement