Question: Design and implement a programming (name it EvenOdd) that uses a while loop to determine and print out all even numbers between 50 and 100

Design and implement a programming (name it EvenOdd) that uses a while loop to determine and print out all even numbers between 50 and 100 on a single line, separated by commas. Then another while loop in the same program to print out all odd numbers between 50 and 100 on a new line, separated by commas. Document your code and properly label the outputs as shown below.

So far I have this:

namespace EvenOdd { class Program { static void Main(string[] args) { Console.WriteLine("Even numbers between 50 and 100: "); int n = 50; while (n <= 100) { Console.Write(n+","); n += 2; }

Console.WriteLine("Odd numbers between 50 and 100: "); int i = 51; while (i <= 100) { Console.Write(i + ","); i += 2; } Console.ReadLine(); } }

I don't know why it's printing all together and not on two seperate lines.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!