#!/usr/bin/env ruby # -*- coding: utf-8 -*- count = 0 while count <99900000 count += 1 if count % 3 !=0 next end printf("3の倍数は%d\n", count) end