Question #7542

how do you write a C# program that asks for three numbers and prints the average value.

Expert's answer

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;




namespace tempCs

{

class Program

{

static void Main(string[] args)

{

int avg=0;

for (int i = 0; i < 3; i++)

{

Console.Write("Enter number " + (i+1) + ": ");

avg += int.Parse(Console.ReadLine());

}

avg /= 3;

Console.WriteLine("Average = " + avg);

}

}

}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS