php剪刀石头布编程思路,网页版
Libérer: 2016-07-25 08:48:42
original
1683 Les gens l'ont consulté
在看了开源中国的网友发布的shell版,于是乎也企图小试牛刀。有不足的地方希望各位不吝啬知道
- if (isset($_POST['sub'])) {
- $what = $_POST['what'];
-
- //需要输入的数组
- $my_array = array("剪刀","石头","布");
-
- //获胜规则
- $guize = array(array("剪刀","布"),array("布","石头"),array("石头","剪刀"));
-
- //取数组中的随机值
- $rand_keys = array_rand($my_array);
- $computer = $my_array[$rand_keys];
-
- echo $computer. "\n";
-
-
- $input = array($computer,$what);
- //将输入的what和电脑随机产生的值构造成一个数组,再判断在不在获胜规则中
-
- if (!(in_array($what,$my_array))) {
- echo "请输入 剪刀、石头、布";
- header("location:index.php");
- }
-
- if ($computer == $what) {
- echo "噢,平手";
- }elseif (in_array($input,$guize)) {
- echo "电脑胜";
- }else {
- echo "你赢咯~";
-
- }
-
- }
-
- ?>
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31