You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
389 B
C++

#include <iostream>
#include <string>
#include <cctype>
using namespace std;
string letter_case_switch(const string & str)
{
string result = str;
if (str.size() == 0)
return result;
result[0] =
isupper(result[0]) ? tolower(result[0]) : toupper(result[0]);
return result;
}
int main()
{
string meow;
cin >> meow;
cout << letter_case_switch(meow) << endl;
}