1.вычислить сумму ряда s= cos(x)+cos(x)*cos(x)++cos(x)*cos(x)**cos(x), для x и n введенных с клавиатуры.

тяпница13 тяпница13    1   08.06.2019 04:30    2

Ответы
kapital0202p0cd2e kapital0202p0cd2e  07.07.2020 14:16
Var n, i: Integer;
    x, sum, temp, cosx: Double;
begin
  ReadLn(x, n);
  sum:=0;
  cosx:=cos(x);
  temp:=1;
  for i:=1 to n do begin
    temp:=temp*cosx;
    sum:=sum+temp;
  end;
  WriteLn(sum);
end.
ПОКАЗАТЬ ОТВЕТЫ
12СоловьёваАнна 12СоловьёваАнна  07.07.2020 14:16
Var x, n, i, j, r: Integer;
    sum, temp: Double;
begin
  ReadLn(x, n);
  sum:=0;
  r:=cos(x);
  for i:=1 to n do begin
    temp:=r;
    for j:=1 to i do temp:=temp*temp;
    sum:=sum+temp;
  end;
  WriteLn(sum);
end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика