完整题目:编写一个程序,读取键盘输入,直到遇到@符号为止,并回显输入(数字除外), 同时将大写字符 转换为小写,将小写字符转换为大写(别忘了 cctype 函数系列)
函数调用:
代码实现:
#include<iostream>
#include<cctype>//为了调用大小写函数
using namespace std;
int main()
{
char ch;
cin>>ch;
while (ch != '@')
{
if (isdigit(ch))//判断是否是数字
{
system("cls");
cout << "请重新输入:";
cin >> ch;
continue;
}
else if (islower(ch))//判断是否为小写字母
{
cout << (char)toupper(ch) << endl;//将小写转为大写
}
else if (isupper(ch))//判断是否为大写字母
{
cout << (char)tolower(ch) << endl;//将大写转为小写
}
cin >> ch;
}
}
代码运行结果: