Welcome to Yumao′s Blog.
昨天無聊到蛋疼
突然發現showblog的群中有動靜
潛入慢慢觀看
發現有人居然在玩99乘法表的動態輸出
哎呀呀 這讓我這個無聊到蛋疼的人突然發現了新大陸一樣
馬上開工丟99乘法表源代碼
咳咳 其實原理都一樣 真的
PHP版本
$i=1;
$j=1;
for($i;$i<10;$i++)
for($j;$j<$i;$j++)
{
$mul=$j*$i;
echo $j.”*”.$i.”=”.$mul.” “;
if($i==$j)
echo “
“;
}
?>
JSP版本
<%
for(int i=1;i<10;i++)
for(int j=1;j {
out.print(i+”x”+j+”=”+i*j+” ”);
if(i==j)
out.print(“
“);
}
%>
ASP版本
<%
For i=1 to 9
response.Write(“
For j=1 to i
response.Write(“
“)
Next
response.Write(“
“)
Next
response.Write(“
“)
%>
簡單的來說 99乘法表可能是編程的基礎了
簡單的思路就是循環2次
從而輸出乘數 然後由代碼得到乘積並輸出