刚学C++几天的初学者,弱智问题大家见笑了,如题,想将输入的字母切换大小写后输出。自己写了一段代码,但有问题
#include <iostream>
using namespace std;
int main()
{
char a,b;
cin >> b;
if(a>=65&&a<=90)
{
b=(a+32);
cout << b << endl;
}
if(a>=97&&a<=122)
{
b=(a-32);
cout << b << endl;
}
return 0;
}
请大家更正,谢谢。