So I am trying to input 4 numbers and have the console readline show it, but when it does, it doesn't separate the numbers.
already tried putting commas in between Firstvalue, Secondvalue, Thirdvalue, and Fourth value but when I do, it only shows the first value.
using System;
namespace ProcessGrades
{
class Program
{
static void Main(string[] args)
{
int Firstvalue = 70;
int Secondvalue = 60;
int Thirdvalue = 30;
int Fourthvalue= 45;
Console.WriteLine("You entered: " + Firstvalue + Secondvalue + Thirdvalue + Fourthvalue);
Console.WriteLine("Highest grade: ");
Console.WriteLine("Lowest grade: ");
Console.WriteLine("Average grade: ");
}
}
}
I expect for it to say 70, 60, 30, 40. Not 70603045