1
7
17
31
49
71
97
127
161
199
241
Объяснение:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
(// t = y(x) Коммент.)*
int main() {
int x, t, h;
for (x = 0; x <= 10; x++){
t = 2 * pow(x, 2) + 4 * x + 1;
printf("%d\n", t);
}
return 0;
1
7
17
31
49
71
97
127
161
199
241
Объяснение:
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
(// t = y(x) Коммент.)*
int main() {
int x, t, h;
for (x = 0; x <= 10; x++){
t = 2 * pow(x, 2) + 4 * x + 1;
printf("%d\n", t);
}
return 0;
}