Newer
Older
Ruby / ファイル1.rb
@WATANABE Itoha WATANABE Itoha on 5 Aug 2024 289 bytes 2024-08-05 21:01:11
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

print("名前を入力:")
nemu = gets.chomp
print("誕生日の月を入力:")
tanzyoubituki = gets.to_i
print("誕生日の日を入力:")
tanzyoubihi = gets.to_i
printf("%sの誕生日は%d月%d日です。\n",nemu,tanzyoubituki,tanzyoubihi)