13 lines
205 B
C++
13 lines
205 B
C++
|
|
#include <iostream>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
int main() {
|
||
|
|
string foo("_upperCas3Me!!");
|
||
|
|
str_toupper(foo);
|
||
|
|
cout << foo << endl;
|
||
|
|
str_tolower(foo);
|
||
|
|
cout << foo << endl;
|
||
|
|
return 0;
|
||
|
|
}
|