Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,236 questions

56,139 answers

573 users

How to use Console.ReadLine() inside a while loop in C#

1 Answer

0 votes
using System;
 
public class Program
{
	public static void Main()
	{
		int n;
		
		Console.WriteLine("Enter numbers, 42 to exit:");
		
		while ((n = int.Parse(Console.ReadLine())) != 42) {
			Console.WriteLine(n);
		}
	}
}



/*
run:

Enter numbers, 42 to exit:
23
23
7
7
9
9
0
0
3290
3290
42

*/

 



answered Apr 25, 2025 by avibootz

Related questions

1 answer 178 views
3 answers 197 views
197 views asked Apr 28, 2025 by avibootz
2 answers 152 views
152 views asked Apr 24, 2025 by avibootz
1 answer 162 views
1 answer 232 views
1 answer 241 views
...