Пк загадал число от 1 до 10 отгадать его с 3 попыток.

lcdnek198 lcdnek198    2   21.09.2019 13:50    76

Ответы
makslazarev201 makslazarev201  08.10.2020 07:15
Язык C++.
#include <iostream>
#include <stdlib.h>
using namespace std;
int main () {
    int b = 0;
    int c = 1;
    int min = 1; 
    int max = 10; 
    srand ( time(NULL) );
    int n = min + rand() % (max - min);
    do{
        cout << "Guess the number: " << endl;
        cin >> b;  
        ++c;
        if (c > 3)
           return 3;
        }
        while (b != n);
        cout << "You are right!" << endl;
    }
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика