Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Print the average of four numbers


C# Sharp Basic: Exercise-9 with Solution

Write a C# Sharp program that takes four numbers as input to calculate and print the average.

C# Sharp: Average of numbers

An average is the sum of a list of numbers divided by the number of numbers in the list. In mathematics and statistics, this would be called the arithmetic mean. The term "arithmetic mean" is preferred in some contexts in mathematics and statistics because it helps distinguish it from other means, such as the geometric mean and the harmonic mean.

C# Sharp Exercises: perimeter of a rectangle

Sample Solution:

C# Sharp Code:

using System;
using System.IO;
public class Exercise9
{
  public static void Main()
  {
     double number1,number2,number3,number4;
      
     Console.Write("Enter the First number: ");
     number1 = Convert.ToDouble(Console.ReadLine());
 
     Console.Write("Enter the Second number: ");
     number2 = Convert.ToDouble(Console.ReadLine());
 
     Console.Write("Enter the third number: ");
     number3 = Convert.ToDouble(Console.ReadLine());
 
     Console.Write("Enter the fourth number: ");
     number4 = Convert.ToDouble(Console.ReadLine());
 
     double result = (number1 + number2 + number3 + number4) / 4;
     Console.WriteLine("The average of {0}, {1}, {2}, {3} is: {4} ",
  number1, number2, number3, number4, result);
   }
}

Sample Output:

Enter the First number: 17                                                                                    
Enter the Second number: 17                                                                                    
Enter the third number: 517                                                                                   
Enter the four number: 51                                                                                    
The average of 17, 17, 517, 51 is: 150.5  

Flowchart:

Flowchart: C# Sharp Exercises - Print the average of four numbers

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program that takes a number as input and print its multiplication table.
Next: Write a C# Sharp program to that takes three numbers(x,y,z) as input and print the output of (x+y)·z and x·y + y·z.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.