Newer
Older
Ruby / count.rb
@SATO Mitsuki SATO Mitsuki on 2 Aug 161 bytes 2025-08-02 15:57:57
#!/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