Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
13
Task/FizzBuzz/SheerPower-4GL/fizzbuzz.4gl
Normal file
13
Task/FizzBuzz/SheerPower-4GL/fizzbuzz.4gl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
declare integer i%
|
||||
|
||||
for i% = 1 to 100
|
||||
if i% mod 15 = 0 then
|
||||
print 'FizzBuzz'
|
||||
elseif i% mod 3 = 0 then
|
||||
print 'Fizz'
|
||||
elseif i% mod 5 = 0 then
|
||||
print 'Buzz'
|
||||
else
|
||||
print i%
|
||||
end if
|
||||
next i%
|
||||
Loading…
Add table
Add a link
Reference in a new issue