Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99345 huatao1030 字符栈 C++ 运行出错 0 0 MS 236 KB 260 2023-08-22 16:18:48

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { stack<char>a; int c=0; for(int i='a';i<='z';i++) { a.push(i); c++; if(c==2) { a.pop(); c=0; } } for(int i=1;i<=26;i++) { cout<<a.top()<<" "; a.pop(); } }


测评信息: