Newer
Older
Ruby / count.rb
@SAITO Azuma SAITO Azuma on 19 Jul 177 bytes 2025-07-19 15:54:13
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-


count = 0

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