Дамп всех задач
This commit is contained in:
12
Pascal/vetvl/Program9.pas
Normal file
12
Pascal/vetvl/Program9.pas
Normal file
@@ -0,0 +1,12 @@
|
||||
program gr;
|
||||
var N, g:integer;
|
||||
begin
|
||||
writeln('<27><><EFBFBD><EFBFBD><EFBFBD>, del');
|
||||
Readln(N, g);
|
||||
if N div 100 = g then write(N div 100,' ');
|
||||
N:=N mod 100;
|
||||
if N div 10 = g then write(N div 10,' ');
|
||||
N:=N mod 10;
|
||||
if N div 1 = g then write(N div 1,' ');
|
||||
N:=N mod 1;
|
||||
end.
|
||||
Reference in New Issue
Block a user