드 ¶
~ruby
def my_dice
a = gets.to_i % 10
b = (rand * 10 + 1).to_i
if a == b then
puts "겼"
else if a> b then
puts "내가 겼"
else puts "가 김"
end
end
puts a
puts b
end
~ruby
def my_dice
a = gets.to_i % 10
b = (rand * 10 + 1).to_i
if a == b then
puts "겼"
else if a> b then
puts "내가 겼"
else puts "가 김"
end
end
puts a
puts b
end