Newer
Older
Ruby / test.rb
#!/usr/bin/env ruby
# -*- coding : utf-8 -*-

count=0
 while count < 10
 count += 1
  
if count %3 != 0
   next 
  end

  printf("3の倍数は%d\n", count)
end