Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99524 黄戈 字符栈 C++ 通过 100 0 MS 252 KB 258 2023-08-22 22:48:14

Tests(1/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; }


测评信息: