将一个整数逆序输出,分别给出递归和非递归算法
整数的逆序输出,递归算法:#include "stdafx.h"#includeusing namespace std;void reverse (int x){ int t_reserved = x; //临时保存x的值,因为x的值还要递归中使用 if (x==0) return; //如果是0,则程序结束 else if (x>0&&x<10)