Variable and Calculations
i need a help of solving this problem
Two students take a C# exam, and their results are assigned to two variables:
int mark1 = 44;
int mark2 = 51;
write a program which calculates and displays the average mark as an int value
thank you
|