Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class prac4
- {
- static void Main(string[] args)
- {
- int number,sum, count;
- Console.WriteLine("How many num u wish to add? ");
- count = Convert.ToInt32(Console.ReadLine());
- for (int i = 0; i < count; i++)
- {
- Console.Write("Enter a number:");
- number = Convert.ToInt32(Console.ReadLine());
- sum += number;
- }
- Console.WriteLine("The sum is{0}",sum);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement