Newer
Older
Ruby / mondai.rb
@ABE Tessho ABE Tessho on 17 Sep 2022 216 bytes 2022-09-17 15:22:12
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
print "お湯を入れました\n"
count = 1
while count <= 5
 printf("%d秒たちました" , count * 5)
 count = count + 1 
end
print "いただきまーす!"