Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

C# -----> Problem (1) Fix next line to complete the header of making a for loop.

ID: 3782654 • Letter: C

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 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!");   

}

}

Explanation / Answer

{   public static void Main(string[] myInput)   

{      

int i, sum = 0;      

Console.WriteLine(" You entered " + myInput.Length + " numbers:");      

//      

// Solution(1) initialize i to 0 increment it by 1 upto length of array.....      

//      

for (int i=0;i<myInput.Length;i=i+1)      

{

Console.Write(myInput[i] + " ");  

sum = sum + Int32.Parse(myInput[i]);      }      

//      

// Solution (2) - just write {0} for first parameter and include variable sum

//      

Console.WriteLine(" Sum of your input numbers ={0} ",sum);      

Console.WriteLine(" Good Bye!");   

}

}