Newer
Older
Ruby / test.rb
# coding: utf-8
count = 0
while count < 10
  count += 1
  if count %3! = 0
    
  end
  printf("3の倍数は %d\n", count)
end