Anonim / 5 years, 6 months ago | Download | Plaintext | Odpowiedz |

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
# include <iostream>
# include <locale>

using namespace std;

int main ()

{
locale myloc ("Polish");
locale oldloc = locale::global (myloc);

cout << " To jest test - ąśżźćęł." << endl;

locale::global (oldloc);

cin.get ();

cin.get ();

return 0;

}