第10章 例题 7-3 递归实现逆序输出整数

本题目要求读入1个正整数n,然后编写递归函数reverse(int n)实现将该正整数逆序输出。

输入格式:
输入在一行中给出1个正整数n。

输出格式:
对每一组输入,在一行中输出n的逆序数。

输入样例:
12345
输出样例:
54321

//递归方式有很多种,不能局限于一种固定结构;
#include 
#include 

int reverse(int n){
	int m;
	if (n==0){
		return 0;
	}
	m=n%10;
	n=n/10;
	printf("%d",m);
	reverse(n);
}

int main()
{
	int n;
	scanf("%d",&n);
	int m=reverse(n);
}

你可能感兴趣的:(牢记,c,笔记,c语言)