文字数の取得方法をRubyで実装しました
# 文字列の最後の文字を出力する
# 新規作成 2023/5/15
puts "文字を入力してください"
str = gets.chomp
# 文字数を取得する
num = str.length
# 1番最後の文字を出力する
puts str[num-1]
Go to list of users who liked
More than 1 year has passed since last update.
文字数の取得方法をRubyで実装しました
# 文字列の最後の文字を出力する
# 新規作成 2023/5/15
puts "文字を入力してください"
str = gets.chomp
# 文字数を取得する
num = str.length
# 1番最後の文字を出力する
puts str[num-1]
Register as a new user and use Qiita more conveniently
Go to list of users who liked