摘要: 样例输入:123 样例输出:321 代码如下: 1 //将一个整数翻转输出 2 #include <stdio.h> 3 int main() 4 { 5 int a; 6 int j,m=0; 7 scanf("%d",&a); 8 while((j=a/10)!=0) 9 { 10 m=m*10 阅读全文
posted @ 2020-03-26 12:26 kakusan 阅读(511) 评论(0) 推荐(0) 编辑