#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <cstdlib> #include <iostream> int main() { setlocale(LC_ALL, "Russian"); int a,b; a = 100; b = 0; com: if (a % 10 == 0) { b = b + a;
} a = a + 1; if ((a >= 100)&(a < 1000)) { goto com; } printf("%d ", b); system("pause"); }
мои познания украинского плохи поэтому понял только номер 9 собственно вот он
Answers & Comments
#include <iostream>
using namespace std;
int main() {
for (int i=14; i<100; i+=7) cout << i << " ";
return 0;
}
Результат:
14 21 28 35 42 49 56 63 70 77 84 91 98
9.
#include <iostream>
using namespace std;
int main() {
int s=0;
for (int i=100; i<1000; i+=10) s+=i;
cout << "s = " << s;
return 0;
}
Результат:
s = 49050
10.
#include <iostream>
using namespace std;
int main() {
int n, k=0;
cin >> n;
for (int i=1; i<=30; i++)
if (i % n == 0) k++;
cout << "k = " << k;
return 0;
}
Пример:
3
k = 10
Verified answer
#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>
#include <cstdlib>
#include <iostream>
int main() {
setlocale(LC_ALL, "Russian");
int a,b;
a = 100;
b = 0;
com:
if (a % 10 == 0) {
b = b + a;
}
a = a + 1;
if ((a >= 100)&(a < 1000)) {
goto com;
}
printf("%d ", b);
system("pause");
}
мои познания украинского плохи поэтому понял только номер 9 собственно вот он