Задание 4. Выполните задание №7 из учебника. Напишите программу для решения задачи w10 из встроенного задачника. Обращайте внимание на начальное и конечное положение Робота.
#include <iostream> using std::cout; using std::cin; using std::endl; #include <cstdlib> using std::rand; using std::srand; #include <ctime> using std::time;
int main() { srand(time(0)); int counter = 0; int growth;
На C++
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
#include <cstdlib>
using std::rand;
using std::srand;
#include <ctime>
using std::time;
int main()
{
srand(time(0));
int counter = 0;
int growth;
for(int i = 0; i < 50; i++)
{
if((growth = rand() % 151 + 150) >= 170)
{
counter++;
}
cout << growth << ' ';
}
cout << endl << endl;
cout << counter << " pupil";
cout << (counter != 1 ? "s" : "") << endl; // Если будет только 1 ученик,
//то больше ничего не печатать
//иначе - допечатать букву "s"
cin.get();
return 0;
}