• Потрібно перетворити в мову програмування С++

    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.

Ответы 1

  • #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;}
    • Автор:

      leah
    • 5 лет назад
    • 0
  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years