Потрібно перетворити в мову програмування с++ program project_420_2; {$apptype console} uses sysutils; var x,y,s: real; i,j: byte; begin y: =1; s: =1; write('x = '); readln(x); for i: =1 to 5 do begin for j: =1 to 4 do s: =s*(i*j+1)/2*x; y: =y*s; end; writeln('y = ',y); readln; end.

школа21002100 школа21002100    1   14.09.2019 20:30    0

Ответы
asyavish15oy8la6 asyavish15oy8la6  07.10.2020 15:14
#include <iostream>
using namespace std;
int main() {
    double x, y, s;
    int i, j;
    y = 1;
    s = 1;
    cout << "X = ";
    cin >> x;
    for (i = 1; i <= 5; i++) {
        for (j = 1; j <= 4; j++)
        s = s * (i * j + 1)/2 * x;
        y = y * s;    
    }
    cout << "Y = " << y << endl;
    system("pause");
    return 0;
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика