O’ZBEKISTON RESPUBLIKASI AXBOROT TEXNOLOGIYALARI VA KOMMUNIKATSIYALARINI RIVOJLANTIRISH
VAZIRLIGI MUHAMMAD AL-XORAZMIY NOMIDAGI TOSHKENT AXBOROT TEXNOLOGIYALARI UNIVERSITETI
QARSHI FILIALI
Kompyuter o’ylagan sonni topish dasturi #include #include using namespace std;
int main()
{
int x, y = 0, count = 0;
srand(time(NULL));
x = rand() % 100 + 1;
cout << "Kompyuter o'ylagan sonni toping: " << endl;
while (x != y)
{
cin >> y;
count++;
if (x > y) cout << "Kompyuter o'ylagan son siz kiritgan sondan katta" << endl;
else if (x < y) cout << "Kompyuter o'ylagan son siz kiritgan sondan kichik" << endl;
}
cout << "Qoyil topdingiz!!!" << endl;
cout << "Urinishlar soni=" << count << endl;
return 0;
}
IZOH: Ushbu kod C++ dasturida Kompyuter o’ylagan sonni topish dasturi.