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