Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Tau-function/XPL0/tau-function.xpl0
Normal file
10
Task/Tau-function/XPL0/tau-function.xpl0
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
int N, D, C;
|
||||
[Format(3, 0);
|
||||
for N:= 1 to 100 do
|
||||
[C:= 0;
|
||||
for D:= 1 to N do
|
||||
if rem(N/D) = 0 then C:= C+1;
|
||||
RlOut(0, float(C));
|
||||
if rem(N/20) = 0 then CrLf(0);
|
||||
];
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue