| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
这题有什么玄机么???我直接就过了啊……0MS
#include <stdio.h>
bool flag[10000]={0};
int g;
int i;
int main()
{
for(i=1;i<10000;i++)
{
g=i+i/1000+(i/100)%10+(i/10)%10+i%10;
flag[g]=1;
}
for(i=1;i<10000;i++)
{
if(flag[i]==0)
printf("%d\n",i);
}
return 0;
}
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator