JavaScript實現人機猜拳

來源:互聯網
上載者:User

標籤:rip   輸出   syn   java   選擇   OLE   code   int   sync   

const readline = require("readline-sync"); //輸出功能console.log("歡迎進入猜拳遊戲");console.log("請選擇出拳:1. 石頭 2.剪刀 3.布");let option = readline.question() - 0;while (isNaN(option) || option < 1 || option > 3) {    console.log("請重輸:");    option = readline.question() - 0;}//電腦隨機出拳let random = parseInt(Math.random() * 3 + 1);if (random == 1) {    console.log("電腦出拳為:石頭");}else if(random == 2){    console.log("電腦出拳為:剪刀");}else{    console.log("電腦出拳為:布");}//玩家出拳if (option == 1) {    console.log("玩家出拳為:石頭");}else if(option == 2){    console.log("玩家出拳為:剪刀");}else{    console.log("玩家出拳為:布");}//判斷function name(a, b) {    if (a - b == -1 || a - b == 2) {        console.log("電腦勝利");    }else if(a - b == 0){        console.log("平局");    }else{        console.log("玩家勝利");          }}name(random, option)

 

JavaScript實現人機猜拳

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.