Advertisement
Josif_tepe

Untitled

Oct 12th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     cout << "Zamisli eden broj od 1 do 1000, i ne mi go kazuvaj" << endl;
  5.    
  6.     cout << "So maksimum 11 prasanja ke go pogodam brojot" << endl;
  7.    
  8.     int L = 1, R = 1000;
  9.    
  10.     while(L <= R) {
  11.         int middle = (L + R) / 2;
  12.        
  13.         cout << "Vnesi 0 ako " << middle << " e tvojot zamislen broj, vnesi -1 ako e pomal od " << middle << ", ili vnesi 1 ako e pogolem od " << middle << endl;
  14.         int x;
  15.         cin >> x;
  16.        
  17.         if(x == 0) {
  18.             cout << "Tvojot broj e " << middle << ". Kraj na igrata!" << endl;
  19.             break;
  20.         }
  21.         else if(x == -1) {
  22.             R = middle - 1;
  23.         }
  24.         else {
  25.             L = middle + 1;
  26.         }
  27.     }
  28.    
  29.    
  30.    
  31.     return 0;
  32. }
  33.  // 972
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement