任意输入一个正整数,将它逆序打印出来。如:输入12345,则输出54321,输入234,则输出432。
展开全部
//这样的基础题建议还是自己多练练比较好
#include<iostream>
using namespace std;
const int M=30;
void main(){
char c,array[M];
int i=0;
while ((c=getchar())!='\n'){
array[i]=c;
i++;
}
for(int j=i-1;j>=0;j--)
cout<<array[j];
cout<<endl;
}
#include<iostream>
using namespace std;
const int M=30;
void main(){
char c,array[M];
int i=0;
while ((c=getchar())!='\n'){
array[i]=c;
i++;
}
for(int j=i-1;j>=0;j--)
cout<<array[j];
cout<<endl;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询