回文数字,代码不起作用

时间:2015-10-21 22:31:23

标签: c

有人能说出我的代码有什么问题吗?

此代码试图从100-999

推断数字的回文
onclick=myFunc(evt)

感谢。

1 个答案:

答案 0 :(得分:0)

您应该为每个新reverse

n设置为0
while ( n <= 999)
{
    reverse = 0; # <== otherwise you are using old value in reverse
    temp = n;
    while(temp!=0)