我正在重写《 Hangman Game》,我希望能够在某些字段中添加数字。我该怎么做呢?

时间:2019-05-08 08:11:46

标签: javascript html

我正在重写《 Hangman Game》,我希望能够在图块中输入数字和字母。我该怎么做?

public boolean check(Depot [] depots, String name){
    for (int i = 0; i < depots.length; i++){
        if(depots[i].getDepotName().equals(name))
            return true;
    }
    return false;
}

子手游戏

<title>Hangman Game</title>
<link href="main.css"rel="stylesheet"type="text/css"/>
<meta name=viewport content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<script src="jquery.js"></script>
<script src="controller.js"></script>

0 个答案:

没有答案