remove _ in names
This commit is contained in:
parent
829db87c40
commit
3af7344581
1270 changed files with 0 additions and 18916 deletions
|
|
@ -1,11 +0,0 @@
|
|||
program fizzbuzz_if
|
||||
integer :: i
|
||||
|
||||
do i = 1, 100
|
||||
if (mod(i,15) == 0) then; print *, 'FizzBuzz'
|
||||
else if (mod(i,3) == 0) then; print *, 'Fizz'
|
||||
else if (mod(i,5) == 0) then; print *, 'Buzz'
|
||||
else; print *, i
|
||||
end if
|
||||
end do
|
||||
end program fizzbuzz_if
|
||||
Loading…
Add table
Add a link
Reference in a new issue