提交时间:2026-01-09 15:40:53
运行 ID: 81961
#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; }