Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main() {
- int a = 5;
- int b;
- do {
- cout << "Guess the number: "s << endl;
- cin >> b;
- } while (a != b);
- cout << "You are right!"s << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement