Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program VII;//название
- var//объявление переменных
- x, a:real;//вводимый аргумент x и параметр a
- begin
- Write('Введите x:');
- ReadLN(x);
- Write('Введите a:');
- ReadLN(a);
- //проверка и вывод в соотвествии с условием
- if (x < a) then
- WriteLN('y = ', 0)
- else
- if (x = a) then
- WriteLN('y = ', 1)
- else
- WriteLN('y = ', (x-a)/(x+a));
- end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement