Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Write the C# code to for the following problem. Declare an array to store five values; they could be decimal numbers. Prompt the user to store...
1. Write the C# code to for the following problem.
Declare an array to store five values; they could be decimal numbers.
Prompt the user to store values into the array.
Then prompt the user for a value to multiply each element of the array.
Adjust the values and print the new values. Make sure you actually change the values in the array.
The output should look like this (note that it should work for any values that are input, these are just examples). You must use loop(s) to process the array.
Enter number: 10
Enter number: 20
Enter number: 30
Enter number: 40
Enter number: 50
Enter value to multiply by: 2
After multiplying by 2 the values are
20
40
60
80
100
Press any key to continue . . .
2. What is the output of the following C# code? int x, y; x = 2; while (x <= 6) { y = 1; while (y < 3) { Console.Write(y); y = y + 1; } Console.WriteLine(); x = x + 2; }
A. 1, 1
B. 12, 12
C. 12
D. 12, 12, 12