Trzeba je ręcznie wpisywać za pomocą odpowiednich kodów (muszą być poprzedzone backslashem ”):
206 – ć
210 – ł
230 – ś
242 – ó
245 – ą
251 – ę
253 – ź
276 – ż
344 – ń
Przykład:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
#include using namespace std ; int main() { cout << "\206" << endl ; cout << "\210" << endl ; cout << "\230" << endl ; cout << "\242" << endl ; cout << "\245" << endl ; cout << "\251" << endl ; cout << "\253" << endl ; cout << "\276" << endl ; cout << "\344" << endl ; return 0 ; } |
Autor: Iskar