ответ: #include <iostream>
using namespace std;
int main(void) {
int seat, line;
cout << "Enter number of line, you want to buy : ";
cin >> line;
cout << "Enter number of seat, you want to buy : ";
cin >> seat;
cout << "Your seat is number " << seat << " on " << line << "'th line" << endl;
system("pause");
return 0;
}
Объяснение:
ответ: #include <iostream>
using namespace std;
int main(void) {
int seat, line;
cout << "Enter number of line, you want to buy : ";
cin >> line;
cout << "Enter number of seat, you want to buy : ";
cin >> seat;
cout << "Your seat is number " << seat << " on " << line << "'th line" << endl;
system("pause");
return 0;
}
Объяснение: