hdu 1106 WA求跑错 ~
#include<stdio.h>#include<stdlib.h>intcmp(constvoid*a,constvoid*b){return(*(int*)a<*(...
#include <stdio.h>
#include <stdlib.h>
int cmp(const void *a,const void *b)
{
return (*(int *)a<*(int *)b);
}
int num[1005];
int main()
{
char str[1005];
while(scanf("%s",&str)!=EOF)
{
int i=0;
int index=0;
int num[1005];
while(str[i]>0)
{
while(str[i]=='5')
i++;
int temp=0;
if(str[i]>0)
{
temp+=str[i++]-'0';
while(str[i]>0&&str[i]!='5')
{
temp*=10;
temp+=str[i++]-'0';
}
num[index++]=temp;
}
}
qsort(num,index,sizeof(int),cmp);
for(int j=index-1;j>=0;j--)
printf(j?"%d ":"%d\n",num[j]);
}
return 0;
} 展开
#include <stdlib.h>
int cmp(const void *a,const void *b)
{
return (*(int *)a<*(int *)b);
}
int num[1005];
int main()
{
char str[1005];
while(scanf("%s",&str)!=EOF)
{
int i=0;
int index=0;
int num[1005];
while(str[i]>0)
{
while(str[i]=='5')
i++;
int temp=0;
if(str[i]>0)
{
temp+=str[i++]-'0';
while(str[i]>0&&str[i]!='5')
{
temp*=10;
temp+=str[i++]-'0';
}
num[index++]=temp;
}
}
qsort(num,index,sizeof(int),cmp);
for(int j=index-1;j>=0;j--)
printf(j?"%d ":"%d\n",num[j]);
}
return 0;
} 展开
1个回答
展开全部
我的AC代码,和我的代码比比哪里不一样吧
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
using namespace std;
bool cmp(int a,int b){return a<b;}
int main()
{
int i,j,f[10000];
char str[10000];
while(scanf("%s",str)!=EOF)
{
j=0;
for(i=0;str[i];i++)
{
if(str[i]!='5')
{
f[j]=0;
while(str[i]&&str[i]!='5')
{
f[j]=f[j]*10+str[i]-'0';
i++;
}
i--;
j++;
}
}
sort(f,f+j,cmp);
printf("%d",f[0]);
for(i=1;i<j;i++)
printf(" %d",f[i]);
printf("\n");
}
return 0;
}
#include<stdio.h>
#include<stdlib.h>
#include<algorithm>
using namespace std;
bool cmp(int a,int b){return a<b;}
int main()
{
int i,j,f[10000];
char str[10000];
while(scanf("%s",str)!=EOF)
{
j=0;
for(i=0;str[i];i++)
{
if(str[i]!='5')
{
f[j]=0;
while(str[i]&&str[i]!='5')
{
f[j]=f[j]*10+str[i]-'0';
i++;
}
i--;
j++;
}
}
sort(f,f+j,cmp);
printf("%d",f[0]);
for(i=1;i<j;i++)
printf(" %d",f[i]);
printf("\n");
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询