Відповідь:
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL, "Rus");
int n;
cout << "Введите натуральное число n: ";
cin >> n;
int s = 0;
while(n > 0){
s += 10;
n -= 1;
}
cout << "s = " << s << endl;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL, "Rus");
int n;
cout << "Введите натуральное число n: ";
cin >> n;
int s = 0;
while(n > 0){
s += 10;
n -= 1;
}
cout << "s = " << s << endl;
return 0;
}