0 дауыс
1.7k көрілді

у = ( sin 2 x + cos 2 x) / х 3

2 жауап

0 дауыс
 
Жақсы жауап

Program esep1;

Var x,y:integer;

Begin

Readln(x);

y:=(sqr(sin(x))+sqr(cos(x)))/(sqr(x)*x)

Writeln(y);

End.
Дұрыс па?

Дұрыс, дұрыс.
+1 дауыс
Program esep ;

Uses crt ;

Var x, y:integer;

Begin

Clrscr;

Readln(x, y) ;

Y:=(sin*2*x+cos*2*x) /x*3

Writeln('y');

End.
...