Advertisement
Guest User

Média? (c) 2015 Eduardo

a guest
Aug 28th, 2015
83
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 ConsoleApplication1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             float m = 0;
  10.  
  11.             Console.WriteLine("Insira 5 números: ");
  12.             for (int i = 0; i < 5; i++)
  13.             {
  14.                 int n;
  15.                 int.TryParse(Console.ReadLine(), out n);
  16.                 m += n;
  17.             }
  18.  
  19.             m /= 5;
  20.  
  21.             Console.WriteLine("A Média dos 5 números é: " + m);
  22.             Console.ReadKey();
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement