Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99520 黄戈 字符栈 C++ 解答错误 0 0 MS 248 KB 253 2023-08-22 22:45:27

Tests(0/1):


#include <bits/stdc++.h> using namespace std; stack<char> a; int main(){ int cnt=0; for(int i = 1;i<=26;i+=2){ a.push(char(i+97-1)); cnt++; } for(int i=0;i<cnt;i++){ cout<<a.top(); a.pop(); } return 0; }


测评信息: