首页
IT
登录
6mi
u
盘
搜
搜 索
IT
乘法表.php
乘法表.php
xiaoxiao
2025-07-16
6
<!doctype
html
>
<
html
lang=
"en"
>
<
head
>
<
meta
charset=
"UTF-8"
>
<
meta
name=
"viewport"
content=
"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
>
<
meta
http-equiv=
"X-UA-Compatible"
content=
"ie=edge"
>
<
title
>
Document
</
title
>
<
style
>
td
{
border
:
3
px solid deeppink
; }
</
style
>
</
head
>
<
body
>
<?php
echo
"<table>"
;
for
(
$i
=
1
;
$i
<=
9
;
$i
++){
echo
"<tr>"
;
for
(
$j
=
1
;
$j
<=
$i
;
$j
++) {
echo
"<td>"
;
echo
$j
.
"*"
.
$i
.
"="
.(
$i
*
$j
);
echo
"</td>"
;
}
echo
"</tr>"
;
}
echo
"</table>"
;
?>
</
body
>
</
html
>
转载请注明原文地址: https://ju.6miu.com/read-1300754.html
最新回复
(
0
)