一道题 谁能帮帮 忙 ASP
一、 输出小九九表:格式为:
1*1=1
2*1=2 2*2=4
………
1*9=9 2*9=18 …..9*9=81
二、 使用inputbox函数实现如下功能,猜数游戏,即输入一个数字判断和586的关系,如果输入的数字小于586,弹出提示信息“输入的数字小了,请重新输入!”,如果输入的数字大于586,弹出提示信息“输入的数字大了,请重新输入!”直到输入的数字等于586,且统计出经过多少次输入正确的数字?
ZAI 线等 --------------------编程问答-------------------- 在顶下 --------------------编程问答-------------------- +急
--------------------编程问答-------------------- 1.C#写的自己转成asp
privite void ninenietable()
{
int i,j,m;
for (i = 1; i < 10; i++)
{
for (j = 1; j < i+1;j++)
{
m = i*j;
Response.Write("{0}*%{1}={2} ",i,j,m);
}
Response.Write("<br>");
}
}
--------------------编程问答-------------------- asp里
<%
dim i,j,m
for i = 1 to 10
for j = 1 to i+1
m = i*j;
Response.Write(i&"*"&j"="&m" ");
next
Response.Write("<br>");
next
%>
是不是这样 好长时间没写asp了忘了
第二题我在想,等下给答案... --------------------编程问答-------------------- 第二题:
--------------------编程问答-------------------- 修改下:
dim num=0
dim str
do while 1=1
str = InputBox("输入一个数")
if str<586 then
MsgBox("数字小了")
num = num + 1
else if str > 586 then
MsgBox("数字大了")
num = num + 1
else
exit do
loop
MsgBox("经过"&num&"次输入得到正确结果")
dim num=0
dim str
do while 1=1
num = num + 1
str = InputBox("输入一个数")
if str<586 then
MsgBox("数字小了")
else if str > 586 then
MsgBox("数字大了")
else
exit do
end if
loop
补充:.NET技术 , ASP.NET