Question: C# -----> Problem (1) Fix next line to complete the header of making a for loop...... Problem (2) Fix next line so the actual sum
C# ----->
Problem (1) Fix next line to complete the header of making a for loop......
Problem (2) Fix next line so the actual sum is displayed......
{ public static void Main(string[] myInput)
{
int i, sum = 0;
Console.WriteLine(" You entered " + myInput.Length + " numbers:");
//
// Problem (1) Fix next line to complete the header of making a for loop......
//
for ()
{
Console.Write(myInput[i] + " ");
sum = sum + Int32.Parse(myInput[i]); }
//
// Problem (2) Fix next line so the actual sum is displayed......
//
Console.WriteLine(" Sum of your input numbers = ");
Console.WriteLine(" Good Bye!");
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
