<?php
$num=10;//被除数
$cs=2;
$str="";
while ($num !=0) {
$ys=$num % $cs;//余数
$num=(int)($num / $cs);//商 变成下一次的被除数
$str=$ys.$str;
}
echo $str;
?>
<!-- 余数 商 累连接
1 0 5 $str="0"
2 1 2 $str=1."0"="10"
3 0 1 $str="010"
4 1 0 $str="1010"
-->
相关文章
- 08-01流程控制语句(if、for、while、do while、switch、 break、continue)
- 08-01shell编程--流程控制for,do-while,if-then,break,continue,case等
- 08-01shell编程(四)之循环控制语句(for,while,until,break,continue,case)
- 08-0101 while 循环输入1 2 3 4 5 6 8 9 10
- 08-01SQL语句中的output用法
- 08-01strstr_while模型
- 08-01[面试题] for() while() 条件判断 赋值问题
- 08-01day04_流程控制语句
- 08-01条件测试与if语句用法
- 08-01WebView.destroy() called while still attached 的解决的方法