Welcome to Yumao′s Blog.
蛋疼産物 幾種語言寫的99乘法表 0.0
, 2011年02月13日 , , 评论 在〈蛋疼産物 幾種語言寫的99乘法表 0.0〉中留言功能已關閉 ,

昨天無聊到蛋疼
突然發現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+”&nbsp”);
if(i==j)
out.print(“
“);
}
%>

ASP版本

<%
For i=1 to 9
response.Write(“

“)
For j=1 to i
response.Write(“

“&i&”×”&j&”=”&i*j&”

“)
Next
response.Write(“

“)
Next
response.Write(“

“)
%>

簡單的來說   99乘法表可能是編程的基礎了
簡單的思路就是循環2次  
從而輸出乘數   然後由代碼得到乘積並輸出

关键字:, , , , , ,

评论已关闭