Kobra Posted April 5, 2008 Report Share Posted April 5, 2008 Помогите с решением программы. Программа вычисления значения функции y=x^2-16+32 для x от 1 до 10 с шагом 0,25. Используя только условный оператор. Quote Link to comment Share on other sites More sharing options...
Тролль Posted April 5, 2008 Report Share Posted April 5, 2008 (edited) Есть тема "Важно: Заказы "Сделайте все за меня"", там такие вопросы и надо помещать. var x,y:real; label m;beginx:=1; m:y:=sqr(x)-16+32;Write('x=',x:5:2,' y=',y:6:2,' ');x:=x+0.25;if x<10+0.25/2 then goto m;ReadLnend. Скорее всего, в условии опечатка и имелось в виду не y=x^2-16+32, а y=x^2-16x+32, тогда должно быть m:y:=sqr(x)-16*x+32 Edited April 5, 2008 by Тролль Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.