首页 > 代码库 > 编程题:输入一个数字,实现逆排功能。
编程题:输入一个数字,实现逆排功能。
编程题:输入一个数字,实现逆排功能。
#include<stdio.h>
#include<conio.h>
fun(int m,char *s)
{
char c;
int k,i=10;
while(m!=0)
{
k=m%i;
*s=k+‘0‘;
s++;
m=(m-k)/i;
}
*s=‘\0‘;
}
main()
{
int n;
char s[81],*p;
p=s;
printf("enter a number(>100):");
scanf("%d",&n);
fun(n,s);
printf("\nthe result is:\n");
while(*p)
{printf("%c ",*p);
p++;}
printf("\n");}
本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413749
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。