var
n: integer;
x:real;
p:double;
begin
Writeln('Введите n и x');
Read(n);Readln(x);p:=1;
while (n > 0) do
p:= p * (1 + 2*(n-1) + n*x);
n:= n - 1;
end;
Writeln(p);
end.
Пример:
Введите n и x
3 2
231
Объяснение:
#include <iostream>
using namespace std;
int main()
{
int x,N,P,k1,k2;
k1=1;
k2=1;
P=1;
cin>>N>>x;
while (k1<=N)
P*=(k1+k2*x);
k1+=2;
k2++;
}
cout<<P;
return 0;
var
n: integer;
x:real;
p:double;
begin
Writeln('Введите n и x');
Read(n);Readln(x);p:=1;
while (n > 0) do
begin
p:= p * (1 + 2*(n-1) + n*x);
n:= n - 1;
end;
Writeln(p);
end.
Пример:
Введите n и x
3 2
231
Объяснение:
#include <iostream>
using namespace std;
int main()
{
int x,N,P,k1,k2;
k1=1;
k2=1;
P=1;
cin>>N>>x;
while (k1<=N)
{
P*=(k1+k2*x);
k1+=2;
k2++;
}
cout<<P;
return 0;
}
Объяснение: