gpt4 book ai didi

PHP实现猜数游戏

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章PHP实现猜数游戏由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例为大家分享了PHP实现猜数游戏的具体代码,供大家参考,具体内容如下 。

猜数游戏有两种玩法:

第一种:两个人玩,一方出数字,一方猜。出数字的人要想好一个指定位数的数,数字可重复,不能让猜的人知道.

猜的人就可以开始猜。每猜一个数,出数者就要说大过或小过出的数.

第二种:两个人玩,一方出数字,一方猜。出数字的人要先想好一个没有重复数字的4位数,不能让猜的人知道。猜的人就可以开始猜。每猜一个数,出数者就要根据这个数字给出几A几B,其中A前面的数字表示位置正确的数的个数,而B前的数字表示数字正确而位置不对的数的个数。如正确答案为5234,而猜的人猜5346,则是1A2B,其中有一个5的位置对了,记为1A,而3和4这两个数字对了,而位置没对,因此记为2B,合起来就是1A2B。接着猜的人再根据出题者的几A几B继续猜,直到猜中为止.

下面是PHP代码实现:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
// 标准输入流和标准输出流
$stdin = null;
$stdout = null;
 
/**
  * 初始化 IO 流
  */
function init() {
  global $stdin ;
  global $stdout ;
 
  $stdin = fopen ( 'php://stdin' , 'r' );
  $stdout = fopen ( 'php://stdout' , 'w' );
}
 
/**
  * 关闭 IO 流
  */
function destroy() {
  global $stdin ;
  global $stdout ;
 
  if ( is_resource ( $stdin )) {
  fclose( $stdin );
  }
  if ( is_resource ( $stdout )) {
  fclose( $stdout );
  }
}
 
/**
  * 从命令行读取一行数据
  */
function read() {
  global $stdin ;
 
  $line = fgets ( $stdin );
  return trim( $line , PHP_EOL); //去除换行符
}
 
/**
  * 向命令行输出一行数据
  */
function write( $line ) {
  global $stdout ;
  // 转换编码
  if ( stripos (PHP_OS, 'winnt' ) !== false) {
  $line = iconv( 'UTF-8' , 'GBK' , $line );
  }
  fwrite( $stdout , $line . PHP_EOL);
}
 
/**
  * 第一种玩法
  * @param $count 位数
  */
function guess_the_number( $count = 2) {
  // 随机生成一个 $count 位数
  $min = pow(10, $count - 1);
  $max = pow(10, $count ) - 1;
  $number = rand( $min , $max );
  init();
  while (1) {
  write(sprintf( 'Please input your number (%s-bit digit), q or quit exit: ' , $count ));
  $readStr = read();
  // exit program
  if ( $readStr == 'q' || $readStr == 'quit' ) {
  break ;
  }
  $readInt = intval ( $readStr );
  if ( $readInt > $number ) {
  write( '大了' );
  } else if ( $readInt < $number ) {
  write( '小了' );
  } else {
  write( '恭喜你,猜对了!' );
  write( 'Input c continue to play' );
  $readStr = read();
  if ( $readStr == 'c' || $readStr == 'continue' ) {
  $number = rand( $min , $max );
  } else {
  break ;
  }
  }
  }
  destroy();
}
 
/**
  * 得到一个没有重复数字的四位数
  */
function getRandNumber() {
  $num = rand(1, 9);
  $array = array_diff ( array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9), [ $num ]);
  shuffle( $array );
  $subarr = array_slice ( $array , 0, 3); //再取 3 个数字
  $str = implode( '' , array_merge ([ $num ], $subarr ));
  return intval ( $str );
}
 
/**
  * 第二种玩法
  */
function guess_the_number2() {
  $number = getRandNumber();
  $len = 4; //四位数
  init();
  while (1) {
  write(sprintf( 'Please input your number (%s-bit digit), q or quit exit: ' , $len ));
  $readStr = read();
  // exit program
  if ( $readStr == 'q' || $readStr == 'quit' ) {
  break ;
  }
  $readInt = intval ( $readStr );
  if ( $readInt == $number ) {
  write( '恭喜你,猜对了!' );
  write( 'Input c continue to play' );
  $readStr = read();
  if ( $readStr == 'c' || $readStr == 'continue' ) {
  $number = getRandNumber();
  } else {
  break ;
  }
  } else {
  // 判断 几A几B
  $readInt = str_pad ( $readInt , $len , '0' , STR_PAD_LEFT); //不足四位的补足四位
  $number = strval ( $number );
  $readArr = str_split ( $readInt , 1); // cast to array
  $numArr = str_split ( $number , 1);
  $aval = 0; // 几A
  $bval = 0; // 几B
  for ( $i = 0; $i < $len ; $i ++) {
  if ( $readArr [ $i ] == $numArr [ $i ]) {
  $aval ++;
  unset( $readArr [ $i ], $numArr [ $i ]);
  }
  }
  $bval = count ( array_intersect ( $readArr , $numArr ));
  write(sprintf( '%sA%sB' , $aval , $bval ));
  }
  }
  destroy();
}
 
if (PHP_SAPI == 'cli' ) {
  // guess_the_number(1);
  guess_the_number2();
} else {
  echo 'Please run under command line!' ;
  exit ;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://blog.csdn.net/u012302539/article/details/57625780 。

最后此篇关于PHP实现猜数游戏的文章就讲到这里了,如果你想了解更多关于PHP实现猜数游戏的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com