PracticeDev/study_cpp/cpp_primer_source_code/Chapter 5/dowhile.cpp

19 lines
402 B
C++
Raw Normal View History

2022-12-20 17:31:11 +08:00
// dowhile.cpp -- exit-condition loop
#include <iostream>
int main()
{
using namespace std;
int n;
cout << "Enter numbers in the range 1-10 to find ";
cout << "my favorite number\n";
do
{
cin >> n; // execute body
} while (n != 7); // then test
cout << "Yes, 7 is my favorite.\n" ;
// cin.get();
// cin.get();
return 0;
}