|  | 
|  | 
| вернуться в форум | C++ AC Послано D4nick  3 янв 2019 06:56the main difficulty here was to understand that you need to use <string>#include <iostream>
 #include <string>
 using namespace std;
 int main() {
 int n; string arr[4] = { "16", "06", "68", "88" };
 cin >> n;
 if (n <= 4)
 for (int i = 0; i < n; i++) {
 cout << arr[i] << " ";
 }
 else
 cout << "Glupenky Pierre";
 }
 | 
 | 
|