#include < stdio.h> #include < math.h> int main(){ const float a=2.5, b=0.4; float t,w; for(t=-1.0; t< 1.0; t+=0.2){ if (t< 0.1) w=a*t*t+b*sin(t)+1; else if (t==0.1) w=a*t+b; else w=sqrt(a*t*t+b*cos(t)+1); printf("t=%f, w=%f\n",t,w); } return 0; } результат выполнения программы: t=-1.000000, w=3.163412 t=-0.800000, w=2.313058 t=-0.600000, w=1.674143 t=-0.400000, w=1.244233 t=-0.200000, w=1.020532 t=-0.000000, w=1.000000 t=0.200000, w=1.221485 t=0.400000, w=1.329821 t=0.600000, w=1.493363 t=0.800000, w=1.696668 t=1.000000, w=1.927724 process exited after 0.08651 seconds with return value 0 для продолжения нажмите любую клавишу . .
Shevtsov1818
02.03.2021
Var a, b, c, y, d: integer; begin read (a, b, c); if a< b then begin d: =a; a: =b; b: =d; end; if b< c then begin d: =c; c: =b; b: =d; end; if a< b then begin d: =a; a: =b; b: =d; end; y: =a; writeln(y); end.
Ответить на вопрос
Поделитесь своими знаниями, ответьте на вопрос:
Сколько мбайтов составляют 229 битов? сколько кбайтов составляют 217 битов? сколько мбайтов составляют 215 кбайтов?