Difference between r1.1 and the current
@@ -12,5 +12,7 @@
else puts "쟤가 이김"
end
end
}}}
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