请用简单C++程序编程 输入一行字符,逆序输出
1个回答
展开全部
#include "iostream"
#include "stack"
#include<stdio.h>
using namespace std;
int main()
{
stack<char> s;
char tp;
tp=getchar();
while(tp!='\n')
{
s.push(tp);
tp=getchar();
}
while (!s.empty())
{
cout<<s.top()<<" ";
s.pop();
}
cout<<endl;
return 0;
}
#include "stack"
#include<stdio.h>
using namespace std;
int main()
{
stack<char> s;
char tp;
tp=getchar();
while(tp!='\n')
{
s.push(tp);
tp=getchar();
}
while (!s.empty())
{
cout<<s.top()<<" ";
s.pop();
}
cout<<endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询