解题思路:
三个循环,中规中矩的解题
注意事项:
参考代码:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int num,array[5],count=0,max;
scanf("%d",&num);
while(num>0)
{
array[count]=num%10;
num/=10;
count++;
}
max=count;
printf("%d\n",count);
while(count>0)
{
printf("%d\t",array[--count]);
}
printf("\n");
while(count<max)
{
printf("%d",array[count++]);
}
printf("\n");
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:995 |
最长单词 (C语言代码)浏览:1463 |
C语言训练-大、小写问题 (C语言代码)浏览:788 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:763 |
母牛的故事 (C语言代码)浏览:593 |
1017题解浏览:663 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
有关字符,字符串的输入输出函数说明浏览:497 |
【偶数求和】 (C语言代码)浏览:460 |
Pascal三角 (C语言代码)浏览:707 |