Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace AverageNumber
- {
- class Program
- {
- static void Main(string[] args)
- {
- int num = int.Parse(Console.ReadLine());
- double sum = 0;
- for (int i = 1; i <= num ; i++)
- {
- int number = int.Parse(Console.ReadLine());
- sum += number;
- }
- Console.WriteLine($"{sum/num:F2}");
- }
- }
- }
Add Comment
Please, Sign In to add comment