编程题:输入一个数字,实现逆排功能。
#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");}
编程题:输入一个数字,实现逆排功能。,布布扣,bubuko.com
时间: 2024-10-14 21:48:46