Heim >php教程 >PHP源码 >php 的 FizzBuzzWhizz  

php 的 FizzBuzzWhizz  

PHP中文网
PHP中文网Original
2016-05-25 16:59:15972Durchsuche

php代码

class NumberGame{
private $str="start<br>";
private $num=0;
private $Fnum=0;
private $snumarr=array();
private $arr_key=array();
function __construct($Fnum,$num,$snumarr){
if($Fnum>=1 && $num>$Fnum && is_array($snumarr) && count($snumarr)>0){
//$this->Fnum=$Fnum;
//$this->num=$num;
$this->snumarr=$snumarr;
for($i=$Fnum;$i<=$num;$i++){
//rule 5
$this->arr_key=array_keys($snumarr);
$typeB = strpbrk($i, current($this->arr_key) )?true:false;
if($typeB){
$this->str.= current($snumarr)."(".$i.") <br>";
}else{
$this->rule($i);
}
}
}
}
function rule($i){
$str="";
for($j=0;$j<count($this->snumarr);$j++){
$key=$this->arr_key[$j];
//var_dump($key);
if(is_int($i/$key)){
$str.=$this->snumarr[$key];
}
}
if(empty($str)){
$str=$i."<br>";
}else{
$str.="(".$i.") <br>";
}
$this->str.=$str;
}
function answer(){
return $this->str;
}
}


$snumarr=array(&#39;3&#39;=>&#39;Fizz&#39;,&#39;5&#39;=>&#39;Buzz&#39;,&#39;7&#39;=>&#39;Whizz&#39;);

$ng=new NumberGame(1,100,$snumarr);

echo $ng->answer();


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn