编写程序,输入一个正整数,将其逆序数输出。用C++编程

2024-12-04 14:58:38
推荐回答(1个)
回答1:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include 
using namespace std;
int main(int argc,char *argv[]){
    int n;
    cout << "Please enter a positive integer...\nn=";
    cin >> n;
    for(;n;cout << n%10,n/=10);
    cout << endl;
    return 0;
}