Home
О нас
Products
Services
Регистрация
Войти
Поиск
Dagdragon
@Dagdragon
July 2022
1
7
Report
помогите плиз
номер 3
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
xerex21
Var N: integer;
begin
readln(N);
if N div 10 = 1 then
write(N)
else
while N <> 0 do
begin
write(N mod 10, ' ');
N := N div 10;
end;
end.
1 votes
Thanks 1
xerex21
var
N: integer;
begin
readln(N);
if (N div 10 = 1) or (N = 0) then
write(N)
else
while N <> 0 do
begin
write(N mod 10, ' ');
N := N div 10;
end;
end.
Dagdragon
Спасибо
×
Report "помогите плизномер 3..."
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(N);
if N div 10 = 1 then
write(N)
else
while N <> 0 do
begin
write(N mod 10, ' ');
N := N div 10;
end;
end.
N: integer;
begin
readln(N);
if (N div 10 = 1) or (N = 0) then
write(N)
else
while N <> 0 do
begin
write(N mod 10, ' ');
N := N div 10;
end;
end.