解题思路:
注意事项:
参考代码:
#include<stdio.h>int main(){ int n; while(scanf("%d", &n)!=EOF){ int num=0; //记录位数 int ans=0; //记录倒序的数 while(n%10!=0 || n/10!=0){ ans=ans*10+(n%10); n=n/10; num++; } printf("%d\n",num); //输出第一个结果 n=ans; // while(n%10!=0 || n/10!=0){ printf("%d ",(n%10)); n=n/10; } printf("\n"); printf("%d\n",ans); } return 0;}
0.0分
0 人评分
人见人爱A+B (C语言代码)浏览:664 |
拆分位数 (C语言代码)浏览:1361 |
WU-格式化数据输出 (C++代码)浏览:1313 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:544 |
1014题解浏览:524 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:755 |
C二级辅导-阶乘数列 (C语言代码)浏览:583 |
陶陶摘苹果2 (C语言代码)浏览:651 |
简单的a+b (C语言代码)浏览:531 |
C语言训练-字符串正反连接 (C语言代码)浏览:653 |