Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Middle-three-digits/CLU/middle-three-digits.clu
Normal file
24
Task/Middle-three-digits/CLU/middle-three-digits.clu
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
middle_three_digits = proc (n: int) returns (string)
|
||||
signals (too_small, even_length)
|
||||
s: string := int$unparse(int$abs(n))
|
||||
if string$size(s) < 3 then signal too_small end
|
||||
if string$size(s) // 2 = 0 then signal even_length end
|
||||
return(string$substr(s, string$size(s)/2, 3))
|
||||
end middle_three_digits
|
||||
|
||||
start_up = proc ()
|
||||
po: stream := stream$primary_output()
|
||||
tests: sequence[int] := sequence[int]$
|
||||
[123,12345,1234567,987654321,10001,-10001,-123,-100,100,-12345,
|
||||
1,2,-1,-10,2002,-2002,0]
|
||||
|
||||
for test: int in sequence[int]$elements(tests) do
|
||||
stream$putright(po, int$unparse(test) || ": ", 11)
|
||||
|
||||
stream$putl(po, middle_three_digits(test))
|
||||
except
|
||||
when too_small: stream$putl(po, "Too small")
|
||||
when even_length: stream$putl(po, "Even length")
|
||||
end
|
||||
end
|
||||
end start_up
|
||||
Loading…
Add table
Add a link
Reference in a new issue