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 154 views
154 views asked Apr 28, 2025 by avibootz
1 answer 146 views
146 views asked Apr 24, 2025 by avibootz
1 answer 113 views
1 answer 178 views
1 answer 100 views
1 answer 128 views
...