c++ 输入一字串后.将字串里大写英文字转成小写、小写英文字转成大写请设计一回圈程式,此程式会不断要求使用者输入一字串(字元数不超过20),直到输入值为0 才结束程式.每当输入完一字串后,程式即将字串里的所有英文字作转换动作(大写英文字转成小写、小写英文字转成大写),并输出至萤幕上.范例如下:Please input a string:^aBcdEfgThe converted string is ^AbCDeFG.Please input a string:aBcThe converted string is AbCPlease input a string:0See You Next Time!Bye Bye!请按任意键继续…
问题描述:
c++ 输入一字串后.将字串里大写英文字转成小写、小写英文字转成大写
请设计一回圈程式,此程式会不断要求使用者输入一字串(字元数不超过
20),直到输入值为0 才结束程式.每当输入完一字串后,程式即将字串里
的所有英文字作转换动作(大写英文字转成小写、小写英文字转成大写),并
输出至萤幕上.
范例如下:
Please input a string:^aBcdEfg
The converted string is ^AbCDeFG.
Please input a string:aBc
The converted string is AbC
Please input a string:0
See You Next Time!Bye Bye!
请按任意键继续…
答
#include
#include
#include
using namespace std;
int main()
{
string str;
while(1)
{
coutstr;
if(str == "0")
{
cout