fix utf8
This commit is contained in:
parent
80737d5a6a
commit
fc81c9e6d0
45 changed files with 169 additions and 178 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/*REXX program displays numbers 1 ââ⺠100 for the FizzBuzz problem. */
|
||||
/*REXX program displays numbers 1 ──► 100 for the FizzBuzz problem. */
|
||||
|
||||
do n=1 for 100
|
||||
select
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*REXX program displays numbers 1 ââ⺠100 for the FizzBuzz problem. */
|
||||
/*REXX program displays numbers 1 ──► 100 for the FizzBuzz problem. */
|
||||
|
||||
do n=1 for 100; _=
|
||||
if n//3 ==0 then _= 'Fizz'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*REXX program displays numbers 1 ââ⺠100 for the FizzBuzz problem. */
|
||||
/*REXX program displays numbers 1 ──► 100 for the FizzBuzz problem. */
|
||||
|
||||
do j=1 to 100; z=j
|
||||
if j//3 ==0 then z='Fizz'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue