| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 405 人关注过本帖
标题:本人新手,大神来帮我瞧瞧哪里不对
取消只看楼主 加入收藏
红颜忆落
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2013-6-7
结帖率:0
收藏
已结贴  问题点数:10 回复次数:0 
本人新手,大神来帮我瞧瞧哪里不对
2.打印所有10000以内的,其平方具有对称性质的数(也称回文数)

1*1=1
11*11=121
22*22=484

#include <stdio.h>
#include <math.h>
#define N 10000
int main()
{
    int b[100]={};
    int a[5]={};
    int i,index,index_max=0;
    for(i=0;i<=N;i++)
    {
        for(index=0;index<=sqrt(i);index++)
        {
            if(index*index==i)
            {
                b[index]=i;
                printf("%d ",b[index]);
            }
            index_max=index;
        }
    }
    printf("\n");
    printf("%d\n",index_max);
    for(index=0;index<index_max;index++)
    {
        if(b[index]<10)
        {
            printf("%d ",b[index]);
        }
        else if(b[index]>=10&&b[index]<100)
        {
            a[0]=b[index]%10;
            a[1]=b[index]-10*a[0];
            if(a[0]==a[1])
                printf("%d ",b[index]);
        }
        else if(b[index]>=100&&b[index]<1000)
        {
            a[0]=b[index]%100;
            a[1]=(b[index]-100*a[0])%10;
            a[2]=b[index]-100*a[0]-10*a[1];
            if(a[0]==a[2])
                printf("%d ",b[index]);
        }
        else if(b[index]<10000&&b[index]>=1000)
        {
            a[0]=b[index]%1000;
            a[1]=(b[index]-1000*a[0])%100;
            a[2]=(b[index]-1000*a[0]-100*a[1])%10;
            a[3]=b[index]-b[index]*1000-b[index]*100-b[index]*10;
            if(a[0]==a[3]&&a[1]==a[2])
                printf("%d ",b[index]);
        }
    }
    printf("\n");
}
输出的结果是0 1 4 9,为什么>10以上的结果输出不了?哪里错了?
搜索更多相关主题的帖子: include 
2013-06-09 08:51
快速回复:本人新手,大神来帮我瞧瞧哪里不对
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023830 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved