How to use cin inside a while loop in C++

1 Answer

0 votes
#include <iostream>

int main() {
	int n = 0;
    	
	std::cout << "Enter numbers, 42 to exit:\n";
     
	std::cin >> n;
	while (n != 42) {
		std::cout << n << "\n";
		std::cin >> n;
	}
}


/*
run:

Enter numbers, 42 to exit:
3
3
8
8
0
0
345
345
90923
90923
42

*/

 



answered Apr 25, 2025 by avibootz

Related questions

3 answers 134 views
134 views asked Apr 28, 2025 by avibootz
1 answer 120 views
120 views asked Apr 24, 2025 by avibootz
1 answer 101 views
1 answer 159 views
1 answer 88 views
1 answer 115 views
...