Home
О нас
Products
Services
Регистрация
Войти
Поиск
КаринаD
@КаринаD
July 2022
2
17
Report
Напишите на языке Паскаль программу : [tex] \frac{x-y}{ x^{2} +10} [/tex]
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
wiright
Var a, y, r1,r2,r3 : integer;
begin
readln(x);
readln(y);
r1 := x-y;
r2 := x*x+10;
r3 := r1/r2;
writeln(r3);
end.
1 votes
Thanks 1
65536
Var x,y,r:real;
begin
readln(x);
readln(y);
r:=(x-y)/(x*x+10);
writeln(r);
end.
0 votes
Thanks 0
×
Report "tex]..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
begin
readln(x);
readln(y);
r1 := x-y;
r2 := x*x+10;
r3 := r1/r2;
writeln(r3);
end.
begin
readln(x);
readln(y);
r:=(x-y)/(x*x+10);
writeln(r);
end.