Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
324 B
0
Indexable
Never
#include <iostream>
#include <string>
using namespace std;
void func2(char z) {
	if (z >= 97 && z <= 122) cout << (char)(z - 32);
	else if (z >= 65 && z <= 90) cout << (char)(z + 32);
	else cout << z;
}
int main(){	
	string a;
	getline(cin, a, '\n');
	for (int i = 0; i < a.size(); i++)
	{
		func2(a[i]);
	}
}