Once you begin to tasks, therefore already know what for loop. Let's look at a few of the tasks, solution in which it is applied, and, thereby, strengthen the knowledge gained. Programming practice– the best way to deal with the material and store information for a long time.
1. Write a program, that will show on the screen the number of the square, entered by the user. The user has to decide for himself – exit the program or continue writing. (Tip – You must run an infinite loop, which provide for termination of his, upon the occurrence of certain conditions).
Show code
Задача: оператор for 1
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
usingnamespacestd;
intmain()
{
setlocale(LC_ALL,"rus");
intdigit=0;// число для расчета
charexit='y';// для выхода или продолжения
for(;;)
{
cout<<"Введите число: ";
cin>>digit;
cout<<"Квадрат "<<digit<<" = "<<digit*digit;
cout<<"\nПродолжить ввод чисел - Y, Выйти - N: ";
cin>>exit;// выбор пользователя
if(exit!='y'&&exit!='Y')
break;// прервать цикл
}
return0;
}
В задаче, as you can see, provided for continuation of the work, вне зависимости в каком регистре введена буква Y (в нижнем или в верхнем).
Result:
2. In the gym every day comes a certain number of visitors. It should prompt the user to enter such data: how many people visited the gym for the day, enter the age of each visitor and ultimately show the age of the oldest and the youngest of them, as well as to calculate the average age of visitors.
Show code
Задача: оператор for 2
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
usingnamespacestd;
intmain()
{
setlocale(LC_ALL,"rus");
intage=0;// будет вводить пользователь
intmaxAge=0;// для записи максимального количества лет
intminAge=100;// для записи минимального количества лет
intsum=0;// общая сумма для расчета среднего
intaverage=0;// для записи среднего возраста посетителей
intamount=0;// количество посетителей спортзала
cout<<"Введите количество посетителей спортзала: ";
cin>>amount;
for(inti=0;i<amount;i++)
{
cout<<"Введите возраст "<<i+1<<"-го посетителя: ";// запрос на введение числа
cin>>age;
if(age>maxAge)// если оно больше, чем хранит переменная max
maxAge=age;// записываем в неё это число
if(age<minAge)
minAge=age;
sum+=age;// накопление общей суммы
}
average=sum/amount;// подсчет среднего возраста
cout<<"\nСредний возраст всех посетителей: "<<average<<endl;
cout<<"\nСамый взрослый: "<<maxAge<<endl;
cout<<"\nСамый молодой: "<<minAge<<endl;
return0;
}
The variable min we initialized value 100, so the program can work properly. If it was initialized value 0, conditionif (age < minAge) would not satisfy the ever, asage is always more 0. Thus the value of variable minAge would always remain zero.
Result:
For the job yourself, We offer you to solve a similar task. Arrange the number of visitors entering the gym and the number of hours spent by each of them in the gym. As a result, calculate and display the total amount, which customers have paid for training.
3. In stock has a certain number of boxes of apples (in this example, 15). When the car arrives for pickup, ask the user to enter, how many boxes loaded into the first car, the second and so on, until there are no more boxes of apples. Provide case, When the user enters the number of boxes more, than there is in stock.
Show code
Задача: оператор for 3
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
usingnamespacestd;
intmain()
{
setlocale(LC_ALL,"rus");
intboxWithApples=15;// количество ящиков на складе
intamountBoxesForSale=0;// количество отгружаемых ящиков
cout<<"Сейчас на складе "<<boxWithApples<<" ящиков с яблоками.\n\n";
for(inti=1;;i++)// счетчик i будет считать количество машин к погрузке
{
cout<<"Сколько ящиков загрузить в "<<i<<"-ю машину? ";
cin>>amountBoxesForSale;
if(amountBoxesForSale>boxWithApples)
{
cout<<"\nНа складе недостаточно товара!";
cout<<"Осталось только "<<boxWithApples<<" ящиков\n\n";
i--;// уменьшить счетчик на единицу
}
else
{
boxWithApples-=amountBoxesForSale;// перезаписываем значение
cout<<"Осталось "<<boxWithApples<<" ящиков.\n";
}
if(boxWithApples==0)// если ящиков больше нет - выйти из цикла
{
cout<<"Яблоки закончились! Давай до свидания!\n";
break;
}
}
return0;
}
"I" count in string 21 reduced per unit, so that the next iteration of the loop to show the correct serial number of the machine.
Result:
If you have questions, please contact us in the comments.
#include using namespace std; void main() { setlocale(LC_ALL, “Rus”); int square;
for ( ; ;) { cout << "Введите число для получения его значения в квадрате (0 = exit)" <> square; if (square == 0) { cout << " Конец программы"; break; } cout << "Выше число в квадрате =" << square * square << endl; } }
an easier option #include using namespace std; int main() { setlocale(LC_ALL, “RU”); int box = 15; int a; int i = box; int x = 1; while ( i > 0) { cout << "Сколько ящиков кинуть "<<x<> a; i-= a; x++; if (i == 0) cout << "Ящики закончилсь \n"; else if (i < 0) { cout << "Вы ввели неправильное значение ящиков у вас осталось: \n"; i += a; cout << i<<endl; x–; } } return 0; }
#include Self-Assignment Solution(rate from 1 to 10) using namespace std; int main(){ int hum;//number of visitors per day int time_1 = 5000;//amount for 1 hour of training int summa_1;//total amount, paid by all visitors cout <> hum; int times[hum]; int summa = 0;//total hours for(short time = 0; time < hum; time++){ cout << "Сколько часов провёл " << time + 1 <> times[time]; summa += times[time]; } cout << "Общая сумма часов: "<< sum << "ч."<< endl;
#include
#include // To use the setw()
int main() {
int box = 15;
int out = 0;
std::cout << "Now we have " << box << " boxes\n";
std::cout << "————————\n";
std::cout << "Truck\t| Boxes Loaded\n";
std::cout << "————————\n";
for (int i = 1;; i ) {
std::cout << i <> out;
if (out > box) {
std::cout << "We have only " << box << " boxes\n";
continue;
}
box -= out;
std::cout << "We have " << box << " boxes left\n";
if (box == 0)
break;
}
std::cout << "————————\n";
return 0;
}
#include
#include
int main() {
int box = 15;
int out = 0;
std::cout << "Now we have " << box << " boxes\n";
std::cout << "————————\n";
std::cout << "Truck\t| Boxes Loaded\n";
std::cout << "————————\n";
for (int i = 1;; i ) {
std::cout << i <> out;
if (out > box) {
std::cout << "We have only " << box << " boxes\n";
continue;
}
box -= out;
std::cout << "We have " << box << " boxes left\n";
if (box == 0)
break;
}
std::cout << "————————\n";
return 0;
}
#include
using namespace std;
void main()
{
setlocale(LC_ALL, “Rus”);
int square;
for ( ; ;)
{
cout << "Введите число для получения его значения в квадрате (0 = exit)" <> square;
if (square == 0)
{
cout << " Конец программы";
break;
}
cout << "Выше число в квадрате =" << square * square << endl;
}
}
an easier option
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int box = 15;
int a;
int i = box;
int x = 1;
while ( i > 0)
{
cout << "Сколько ящиков кинуть "<<x<> a;
i-= a;
x++;
if (i == 0)
cout << "Ящики закончилсь \n";
else if (i < 0) {
cout << "Вы ввели неправильное значение ящиков у вас осталось: \n";
i += a;
cout << i<<endl;
x–;
}
}
return 0;
}
#include Self-Assignment Solution(rate from 1 to 10)
using namespace std;
int main(){
int hum;//number of visitors per day
int time_1 = 5000;//amount for 1 hour of training
int summa_1;//total amount, paid by all visitors
cout <> hum;
int times[hum];
int summa = 0;//total hours
for(short time = 0; time < hum; time++){
cout << "Сколько часов провёл " << time + 1 <> times[time];
summa += times[time];
}
cout << "Общая сумма часов: "<< sum << "ч."<< endl;
amount_1 = amount*time_1;
cout <<"Общая стоимость: " << summa_1 << "руб." << endl;
return 0;
}
3)Rumor mb navnokodyl, but he himself!
int box = 15;
std::cout << "Всего яблок – " << box << '\n';
for (int i = 1; i <= 15; ++i) {
int a, b;
std::cout << "В какую машину хотите закинуть яблоки?\n 1.Redn 2. Green" <> a;
if (a == 1) {
std::cout <> b;
box-=b;
system(“cls”);
}
if (a == 2) {
std::cout <> b;
box-=b;
system(“cls”);
}
std::cout << "\nЯблок осталось – " << box << '\n';
if (box == 0) {
system("cls");
break;
}
}
std::cout << "Яблоки кончились…";
Good?
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int box = 15;
int forSale = 0;
for (int i = 1; box > 0; i ) {
cout << "Сейчас на складе " << box << " boxes of apples" << endl;
cout << "Введите кол-во коробок для погрузки в " << i <> forSale;
if (forSale > box) {
for (;forSale > box;) {
cout << "На складе нет столько коробок" <> forSale;
}
}
box -= forSale;
}
cout << "Все коробки были погружены" << endl;
return 0;
}
cin didn't post cool
chzh
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int box = 15;
int forSale = 0;
for (int i = 1; box > 0; i ) {
cout << "Сейчас на складе " << box << " boxes of apples" << endl;
cout << "Введите кол-во коробок для погрузки в " << i <> forSale;
if (forSale > box) {
for (;forSale > box;) {
cout << "На складе нет столько коробок" <> forSale;
}
}
box -= forSale;
}
cout << "Все коробки были погружены" << endl;
return 0;
}
// A task 2 ANSWER
#include
int main()
{
using namespace std;
cout <> max;
int* p = new int[max];
double srnum{};
for (int i{}; i < max; i )
{
cout << "Enter age " << i + 1 <> *(p + i);
srnum += (*(p + i) / max);
}
int tempMax = *p;
int tempMin = *p;
for (int i = 1; i tempMax)
tempMax = *(p + i);
if (*(p+i)<tempMin)
tempMin = *(p + i);
}
cout << "Maximum age: " << tempMax << endl;
cout << "Minimum age: " << tempMin << endl;
cout << "Average age: " << srnum;
}
delete at the end [ ] p;
to free the memory pointed to by the pointer