Answered step by step
Verified Expert Solution
Link Copied!

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!

image text in transcribed

image text in transcribed

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 (counter

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Why did it enter into these partnerships?

Answered: 1 week ago

Question

Consider this article:...

Answered: 1 week ago