Home
О нас
Products
Services
Регистрация
Войти
Поиск
NailKhairullov
@NailKhairullov
March 2022
2
13
Report
Паскаль. Помогите пожалуйста.
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
elenaklon
Var a,b:integer;
begin
a:=-10;
b:=7;
while a<=10 do
begin
write('a = ',a:3,' b = ',b,' S = ',a+b:2,' R = ',a-b:2);
writeln;
a:=a+5
end
end.
0 votes
Thanks 1
asoiiu
Program fgg;
const
b = 7;
var
a, s, r: Integer;
begin
for a := - 10 to 10 do
Writeln('s=', a + b, ' ', 'r=', a - b);
a := a + 5;
end.
0 votes
Thanks 0
×
Report "Паскаль. Помогите пожалуйста..."
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
a:=-10;
b:=7;
while a<=10 do
begin
write('a = ',a:3,' b = ',b,' S = ',a+b:2,' R = ',a-b:2);
writeln;
a:=a+5
end
end.
const
b = 7;
var
a, s, r: Integer;
begin
for a := - 10 to 10 do
Writeln('s=', a + b, ' ', 'r=', a - b);
a := a + 5;
end.