2012-03-20T08:42:56-04:00
how do you write a C# program that asks for three numbers and prints the average value.
1
2012-03-22T09:30:16-0400
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 !
Learn more about our help with Assignments:
C#
Comments
You're welcome. We are glad to be helpful. If you really liked our service please press like-button beside answer field. Thank you!
Thank you works perfectly fine.