为什么我的这段ASP.NET代码不能执行?
protectedvoidButton1_Click(objectsender,EventArgse){inta,b,c;Stringresult="水仙花数有:";fo...
protected void Button1_Click(object sender, EventArgs e)
{
int a, b, c;
String result = "水仙花数有:";
for (int i = 100; i < 999; i++)
{
a=i%100;
b=(i/10)%10;
c=i/10;
if (Math.Pow(a,3) + Math.Pow(b, 3) + Math.Pow(c, 3) == i)
{ Response.Write(result + i); }
}
} 展开
{
int a, b, c;
String result = "水仙花数有:";
for (int i = 100; i < 999; i++)
{
a=i%100;
b=(i/10)%10;
c=i/10;
if (Math.Pow(a,3) + Math.Pow(b, 3) + Math.Pow(c, 3) == i)
{ Response.Write(result + i); }
}
} 展开
4个回答
展开全部
protected void Button1_Click(object sender, EventArgs e)
{
String result = "水仙花数有:";
for (int i = 100; i < 999; i++)
{
int a=i%100;
int b=(i/10)%10;
int c=i/10;
if (Math.Pow(a,3) + Math.Pow(b, 3) + Math.Pow(c, 3) == i)
{ Response.Write(result + i); }
}
}
{
String result = "水仙花数有:";
for (int i = 100; i < 999; i++)
{
int a=i%100;
int b=(i/10)%10;
int c=i/10;
if (Math.Pow(a,3) + Math.Pow(b, 3) + Math.Pow(c, 3) == i)
{ Response.Write(result + i); }
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int a = i / 100;
int b = (i / 10) % 10;
int c = i % 10;
是这个 你算错了。
int b = (i / 10) % 10;
int c = i % 10;
是这个 你算错了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Button1_Click
Response.Write
看不懂了,到底是winform还是控制台啊?
Response.Write
看不懂了,到底是winform还是控制台啊?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说清楚点 单步调试 不就知道哪里的问题了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询