Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.73 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <ctime>
  4. #include <cstdlib>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.     setlocale(LC_ALL,"RUS");
  11.  
  12.  
  13.     int k;
  14.     cout<<"Загадайте число от 1 до 100: ";
  15.     cin>>k;
  16.     char* str1 = "Слишком мало";
  17.     char* str2 = "Слишком много";
  18.     char* str3 = "В точку";
  19.     char* str4;
  20.     str4 = str1;
  21.     int k1 = 1;
  22.     int k2 = 99;
  23.     while (str4 != str3)
  24.     {
  25.         cout<<"Ваше число - "<<rand()%k2 + k1<<"?"<<endl;
  26.         cin>>str4;
  27.         if (str4 == str1)
  28.         {
  29.             k1 = rand()%k2 + k1;
  30.         }
  31.         if (str4 == str2)
  32.         {
  33.             k2 = rand()%k2 + k1;
  34.         }
  35.     }
  36.     return 0;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement