Брусок массой т движется равноускоренно по горизонтальной поверхности под действием силы F, как показано на рисунке. Коэффициент

danila2001k danila2001k    2   16.04.2019 23:00    21

Ответы
vila7 vila7  29.05.2020 23:16
Var
 A,B,x:integer;
 y:real;
begin
 readln(A,B,x);
 if x=3
  then
   y:=(B-sin(B))/A
  else
   if x=7
    then
       y:=A*B-B*A/x
    else
     if x=10
      then
       y:=x+A
      else
       if (x mod 3 =0) and (x>6)
        then
         y:=B-x
        else
         if (x mod 5 = 0) and (x mod 4 = 0) and (x<65) and (x<>60)
          then
            y:=x
          else
            y:=35;
writeln('y(',x,')=',y);
end.
ПОКАЗАТЬ ОТВЕТЫ
elizavetabobrova elizavetabobrova  29.05.2020 23:16
Program al;   
    var A,B,x:integer; 
      y:real; 
begin 
   writeln('A='); 
  readln(A); 
    Writeln('B='); 
    readln(B);
  writeln('x='); 
 readln(x);
 if x=3 then
      y:=(B-sin(B))/A else 
   if x=7 then  
   y:=A*B-B*A/x else  
     if x=10  then    
  y:=x+A else 
  if (x mod 3 =0) and (x>6)   
     then   
     y:=B-x else  
    if (x mod 5 = 0) and (x mod 4 = 0) and (x<65) and (x<>60)   
      then       
     y:=x else       
      y:=35;  
 writeln('y(',x,') =',y); 
readln; 
 end.         
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Другие предметы