Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Identify and correct the errors in each of the following pieces of code. C# (C Sharp) Please do all parts. Thanks! a-1) For (i=100,i>=1,++i) {
Identify and correct the errors in each of the following pieces of code.
C# (C Sharp)
Please do all parts. Thanks!
a-1) For (i=100,i>=1,++i) \{ Console.WriteLine(i); \} b-1) The following code should display whether integer value is odd or even: switch (value \% 2) \{ case 0 : Console.WriteLine("Even integer"); case 1 : Console.Writeline("Odd integer"); \} c-1) The following code should output the odd integers from 19 to 1 : for (int i=19;i>=1;i+=2 ) \{ Console.WriteLine(i); \} d-1) The following code should output the even integers from 2 to 100 : counter =2; do { Console. Writeline(counter); counter +=2; \} While (counterStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started