Home
О нас
Products
Services
Регистрация
Войти
Поиск
koteika777
@koteika777
August 2022
1
14
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
petyaGavrikov
Verified answer
// В программе вычисляется НОД(a,c)
var a,c:integer;
begin
readln(a,c);
while not (a=c) do
if a>c then a:=a-c else c:=c-a;
writeln(a);
end
.
Пример:
75 100
25
1 votes
Thanks 1
koteika777
Спасибо =)
petyaGavrikov
Пожалуйста.
×
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
Verified answer
// В программе вычисляется НОД(a,c)var a,c:integer;
begin
readln(a,c);
while not (a=c) do
if a>c then a:=a-c else c:=c-a;
writeln(a);
end.
Пример:
75 100
25