Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

Step: 3

blur-text-image

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

Fundamentals Of Database Management Systems

Authors: Mark L. Gillenson

2nd Edition

0470624701, 978-0470624708

More Books

Students also viewed these Databases questions

Question

What are the classifications of Bank?

Answered: 1 week ago

Question

Provide examples of Dimensional Tables.

Answered: 1 week ago