我已经提出了解决问题的代码,但输出显示最大的回文为0.我不明白这个问题。需要帮忙。我刚刚开始基本的C编码,我无法通过以下代码了解错误:
#include<stdio.h>
int main()
{
int i=100,j=100,prod,temp,rev=0,rem,l,m,max=0;
for(;i<1000;i++)
{
for(;j<1000;j++)
{
prod=i*j;
temp=prod;
while(temp!=0)
{
rem=temp%10;
rev=(rev*10)+rem;
temp=temp/10;
}
if(rev==prod)
{
if(prod>max)
{
max=prod;
l=i;
m=j;
}
}
}
}
printf("\nThe largest number which is a palindrome and is a product of two 3 digit numbers is: %d and is the product of numbers %d and %d\n",max,l,m);
return 0;
}
答案 0 :(得分:0)
为每次计算重置rev
。
rev = 0; // inside the loops
答案 1 :(得分:0)
rev
。
答案 2 :(得分:0)
有两件事阻止此代码工作。首先你需要
在每次迭代时重置rev=0
。您还需要在外循环的每次迭代中重置j=100
。
#include<stdio.h>
int main(int,char**)
{
int i=100,j=100,prod,temp,rev=0,rem,l,m,max=0;
for(;i<1000;i++)
{
for(j=100;j<1000;j++)
{
prod=i*j;
temp=prod;
rev=0;
while(temp!=0)
{
rem=temp%10;
rev=(rev*10)+rem;
temp=temp/10;
}
if(rev==prod)
{
if(prod>max)
{
max=prod;
l=i;
m=j;
}
}
}
}
printf("\nThe largest number which is a palindrome and is a product of two 3 digit numbers is: %d and is the product of numbers %d and %d\n",max,l,m);
return 0;
}