已解决 赵奕帆 初级守护 为什么错了???? #include<iostream> using namespace std; int main() { char a,b; cin>>a>>b; a=char(int(a)-32); b=char(int(b)+32); cout<<a<<" "<<b; return 0; }
已采纳 叶子煊 中级光能 那个,你好 题目很重要,请你务必注意哦~~~!!! 输出描述 Output Description 输出两行,分别是变换后的两个字母。 所以将你的输出部分改成 cout<<a<<endl<<b; 就可以了~~~ ~~~~~~~~~~~~~~~~~~~~~~~