Newer
Older
Ruby / count.rb
@SUZUKI Megumi SUZUKI Megumi on 28 Aug 149 bytes 2023-08-28 20:33:24
#!/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