Advertisement
ItzEdInYourBed

guess.cpp

May 18th, 2020
852
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5.   int guess;
  6.  
  7.   int tries = 0;
  8.  
  9.   std::cout << "I have a number 1-10.\n";
  10.   std::cout << "Please guess it: ";
  11.   std::cin >> guess;
  12.  
  13.   // Write a while loop here:
  14.  
  15.  
  16.  
  17.  
  18.  
  19.   if (guess == 8) {
  20.    
  21.     std::cout << "You got it!\n";
  22.  
  23.   }  
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement