看板
[ Ruby ]
討論串[問題] case比較數字大小
共 6 篇文章
內容預覽:
環境:. ruby 1.8.7 on windows. 狀況:. 各位前輩好,我是今天剛開始學ruby的新手. 我在練習case功能時遇到一些小trouble. 我想要從命令列讀入3個數字,然後判斷是正數、負數抑或是0. ================. code:. list = []. for
(還有502個字)
內容預覽:
你對ruby 的case 的概念不熟. case expr. when val1. stmt1. when val2. stmt2. else. stmt3. end. 語意是當 expr 等於 val1 的時候,做stmt1. val2 stmt2. 都不是的時候 做stmt3. 以你的例子. c
(還有140個字)