Files
2026-01-15 14:01:21 +09:00

10 lines
135 B
Ruby
Executable File

#!/usr/bin/ruby
# -*- coding: utf-8 -*-
=begin
문자열에서 모음 개수 세기
=end
str = "Hello World"
puts str.count("aeiou")