c语言用循环的方法,把输入的一个整数,倒序输出
3个回答
推荐于2017-09-04 · 知道合伙人教育行家
关注
展开全部
思路:可以利用while循环依次对其进行对10取余输出并除10操作直到其为0为止,输出的结果就是该整数的倒序。
参考代码:
#include <stdio.h>
int main()
{
int i;
scanf("%d",&i);
while(i)
{
printf("%d ",i%10);
i/=10;
}
return 0;
}
/*
输出:
12345
5 4 3 2 1
*/
展开全部
取余加除法就可以了
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
while(a)
{
printf("%d",a%10);
a/=10;
}
return 0;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<stdio.h>
#include<string.h>
main()
{
char str[100];
int n;
printf("please input a number:");
gets(str);
n=strlen(str);
for(;n>=0;n--){
printf("%c",str[n])
};
}
关键你没说多少位数字,所以最好转换成字符串,这样处理起来比较方便
#include<string.h>
main()
{
char str[100];
int n;
printf("please input a number:");
gets(str);
n=strlen(str);
for(;n>=0;n--){
printf("%c",str[n])
};
}
关键你没说多少位数字,所以最好转换成字符串,这样处理起来比较方便
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |