Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プログラムの修正 #17

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions cafe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
{ name: 'エスプレッソ', price: '340' },
{ name: '緑茶', price: '450' }
].freeze

FOODS = [
{ name: 'チーズケーキ', price: '470' },
{ name: 'アップルパイ', price: '520' },
Expand All @@ -20,15 +19,17 @@ def take_order(menus)
end
print '>'
order_number = gets.to_i
order_number -= 1
puts "#{menus[order_number][:name]}(#{menus[order_number][:price]}円)ですね。"

order_number
end

puts 'bugカフェへようこそ!ご注文は? 番号でどうぞ'
order1 = take_order(DRINKS)
drink_order = take_order(DRINKS)

puts 'フードメニューはいかがですか?'
order2 = take_order(FOODS)
food_order = take_order(FOODS)

total = FOODS[order1][:price] + DRINKS[order2][:price]
total = DRINKS[drink_order][:price].to_i + FOODS[food_order][:price].to_i
puts "お会計は#{total}円になります。ありがとうございました!"