#include < iostream> using std: : cout; using std: : cin; using std: : endl; #include < cmath> using std: : pow; int main(){ double x = -4.0, y; for(int i = 0; i < 14; i++) { y = pow(x, 2) + 2 * x + 2; x += 0.2; cout < < "y = " < < y < < endl; } cin.get(); return 0; }
natalia-shelkovich
03.07.2020
#include < stdio.h> #include < string.h> #include < iostream> void main() { int a[10]; for (int i = 0; i < 10; ++i) { a[i] = rand() % 150; if (a[i] > 50) { printf("%d\n", a[i]); } } getchar(); }
bykotatyana
03.07.2020
Var a,b,c,n: integer; begin for a: =1 to 7 do for b: =a+1 to 8 do for c: =b+1 to 9 do begin n: =a*100+b*10+c; write(n: 4) end; end.var i,j,n: integer; a: array[1..4,1..5]of real; beginfor i: =1 to 4 do begin for j: =1 to 5 do begin a[i,j]: =random*2-1; write(a[i,j]: 20: 15); if a[i,j]> =0 then n: =n+1; end; writeln; end; writeln('количество неотрицательных: ',n); end.var i,j,sum: integer; a: array[1..3,1..4]of integer; beginfor i: =1 to 3 do for j: =1 to 4 do readln(a[i,j]); writeln('массив: '); for i: =1 to 3 do begin for j: =1 to 4 do begin sum: =sum+a[i,j]; write(a[i,j]: 4); end; writeln('sum=': 8,sum); sum: =0; end; end.
Ответить на вопрос
Поделитесь своими знаниями, ответьте на вопрос:
Вычислить и вывести в один столбик 14 значений выражения y=x^2+2x+2 при увеличении x от начального значения -4 с шагом 0, 2
#include < iostream> using std: : cout; using std: : cin; using std: : endl; #include < cmath> using std: : pow; int main(){ double x = -4.0, y; for(int i = 0; i < 14; i++) { y = pow(x, 2) + 2 * x + 2; x += 0.2; cout < < "y = " < < y < < endl; } cin.get(); return 0; }