936241151 发表于 2020-10-27 12:13:03

小白求助

本帖最后由 936241151 于 2020-10-27 15:42 编辑

#include<stdio.h>
int main()
{ long int num;
int indiv,ten,hundred,thousand,ten_thousand,place;
scanf("%ld",&num);
if(num<=0||num>=100000){
   printf("error data");
         exit(0);}
else if (num>9999&&num<100000) place=5;
else if (num>999&&num<10000) place=4;
else if (num>99&&num<1000) place=3;
else if (num>9&&num<100) place=2;
else place=1;
printf("%d\n",place);
ten_thousand=num/10000;
thousand=num/1000%10;
hundred=num/100%10;
ten=num%100/10;
indiv=num%10;
switch(place)
{ case 5:printf(" %d %d %d %d %d\n",ten_thousand,thousand,hundred,ten,indiv);
         printf("%d%d%d%d%d\n",indiv,ten,hundred,thousand,ten_thousand);break;
case 4:printf(" %d %d %d %d\n",thousand,hundred,ten,indiv);
      printf("%d%d%d%d\n",indiv,ten,hundred,thousand);break;
case 3:printf(" %d %d %d\n",hundred,ten,indiv);
      printf("%d%d%d\n",indiv,ten,hundred);break;
case 2:printf(" %d %d\n",ten,indiv);
      printf("%d%d\n",indiv,ten);break;
case 1:printf(" %d\n",indiv);
      printf("%d\n",indiv);break;
}
return 0;
}
这是pintia上的一道题,总是说答案错误,求大神改正

xieglt 发表于 2020-10-27 14:01:55

本帖最后由 xieglt 于 2020-10-28 15:33 编辑

看不出什么错误。
不过主函数没有返回值

另外,exit 函数需要包含头文件

#include <stdlib.h>

int main()
{
    .....
    return 0;
}

风过无痕1989 发表于 2020-10-27 20:21:57

程序第8行使用了 exit(),而没有添加头文件,#include<windows.h>

乐乐学编程 发表于 2020-10-28 15:19:32

加上头函数,没有问题了,我 DEV 运行正常
页: [1]
查看完整版本: 小白求助