НАПИСАТЬ ОПИСАНИЕ КОДА , КАК ОН БЫЛ НАПИСАН , ВСЕ ФУНКЦИИ #include #include #include #include #include #include #include #include #define n 10 using namespace std; struct FIO { char surname[100]; char name[100]; char fatherland[100]; }; struct Data { int day, month, year; }; struct Pasport { int num; Data bday; string citi; string street; int home, sq; }; struct Hotel { FIO fio; Pasport pas; char cel[100]; Data reg; Data otzd; double sum; }; void Show(Hotel a[n]) { cout > dd >> mm >> yy; //1 Ввод с клавиатуры данных в массив, состоящий из 10 структур типа Hotel for (int i = 0; i > a[i].fio.fatherland >> a[i].fio.name >> a[i].fio.surname; cout > a[i].pas.num; cout > a[i].pas.bday.day >> a[i].pas.bday.month >> a[i].pas.bday.year; cout > a[i].pas.citi >> a[i].pas.street >> a[i].pas.home >> a[i].pas.sq; cout > a[i].cel; cout > a[i].reg.day >> a[i].reg.month >> a[i].reg.year; cout > a[i].otzd.day >> a[i].otzd.month >> a[i].otzd.year; cout > a[i].sum; }
#include <iostream>
using namespace std;
int main()
{
int a=5;
int b=4;
int c;
cout << "Количество яблок у Васи = " << a << "\n";
cout << "Количество яблок у Пети = " << b << "\n";
cout << "Количество яблок у Васи и Пети вместе = " << a+b << "\n";
c=(a+b)/3;
cout << "Если разделить на 3-х поровну, то получится = " << c << "\n";
return 0;
}
Результат:
Количество яблок у Васи = 5
Количество яблок у Пети = 4
Количество яблок у Васи и Пети вместе = 9
Если разделить на 3-х поровну, то получится = 3