def okane(prob,cost) times=0 while true times+=1 if rand(prob)==0 return "掛かった金額は#{times*cost}円" else #puts("はずれ!") end end end puts(okane(1000,300))
回答1件
あなたの回答
tips
プレビュー
Q&A
解決済
退会済みユーザー
総合スコア0
投稿2020/10/30 02:43
編集2020/10/30 11:05def okane(prob,cost) times=0 while true times+=1 if rand(prob)==0 return "掛かった金額は#{times*cost}円" else #puts("はずれ!") end end end puts(okane(1000,300))
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/10/30 06:30