Advertisement
khaiwen1111

Prac 1 Q3

Jun 7th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1.  class prac4
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             int number,sum, count;
  6.            
  7.             Console.WriteLine("How many num u wish to add? ");
  8.            
  9.              count = Convert.ToInt32(Console.ReadLine());
  10.  
  11.             for (int i = 0; i < count; i++)
  12.             {
  13.          
  14.                 Console.Write("Enter a number:");
  15.                number = Convert.ToInt32(Console.ReadLine());
  16.  
  17.                 sum += number;
  18.  
  19.             }
  20.             Console.WriteLine("The sum is{0}",sum);
  21.          
  22.          }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement