본문내용
******************************************1.회문숫자*******************************************
#include
using namespace std;
int ShowReverseNumber (int );
void main()
{
int n, i;
cout<<"회문할 정수를 입력하세요:";
cin>>n;
cout<
int ShowReverseNumber (int num ) //숫자를 뒤집는다.
소개글