提交时间:2026-06-12 14:46:25
运行 ID: 90924
#include<bits/stdc++.h> using namespace std; int main(){ char z,x,c,v,b; z='Z'; x=65; c=x+1; v=97; b=48; cout<<z; cout<<(char)x<<(char)c<<(char)v<<(char)b; return 0; }