#include
#include
int main(){
const float a=2.5, b=0.4;
float t,w;
for(t=-1.0;t<1.0;t+=0.2){<br> if (t<0.1)<br> 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
Для продолжения нажмите любую клавишу . . .