Newer
Older
Ruby / count.rb
@SAITO Hono SAITO Hono on 19 Jul 390 bytes 2025-07-19 15:57:59
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-


count = 0

while count <10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

  
  count += 1
  if count % 3 !=0
    next
  end
  printf("3の倍数は%d\n", count)
end