Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp4
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.Write("n=");
  10. int n = int.Parse(Console.ReadLine());
  11. int sum = 0;
  12. for (int i =1;i<=n;i++)
  13. {
  14. Console.Write("Число=");
  15. int chislo = int.Parse(Console.ReadLine());
  16. sum += chislo;
  17.  
  18. }
  19. Console.WriteLine("Сумата на {1} числа е {0}.", sum, n);
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement