#include <iostream>
using namespace std;
int main()
{
int q;
cout << "Сколько раз повторить? ";
cin >> q;
while (0 < q) {
q -= 1;
cout << "Привет!" << endl;
}
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Написано на языке программирования C++.
#include <iostream>
using namespace std;
int main()
{
int q;
cout << "Сколько раз повторить? ";
cin >> q;
while (0 < q) {
q -= 1;
cout << "Привет!" << endl;
}
return 0;
}