#include <iostream>
#include <string>
#include <algorithm>
#include <cctype>
using namespace std;
int main() {
string imieNazwisko;
cout << "Podaj imie i nazwisko: ";
getline(cin, imieNazwisko);
transform(imieNazwisko.begin(), imieNazwisko.end(), imieNazwisko.begin(),::toupper);
cout << "Wersja wielkimi literami: " << imieNazwisko << endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: