Amiblind

Sum Numbers

Nov 10th, 2020
828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SumNumbers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             int result = 0;
  11.             for (int i = 1; i < n; i++)
  12.             {
  13.                 int number = int.Parse(Console.ReadLine());
  14.                 result += number;
  15.                 if (result >= n)
  16.                 {
  17.                     break;
  18.                 }
  19.             }
  20.             Console.WriteLine($"{result}");
  21.         }
  22.     }
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment