-6
World::World() {
int width = -1;
int height = -1;
cout << "Aby rozpoczac gre wpisz rozmiar planszy" << endl;
cout << "Aby uruchomic domyslne romiary zostaw pole puste" << endl;
cout << "Podaj szerokosc: ";
// I don't see what i'm typing and i need to press enter twice;
cin >> width;
cout << "Podaj wysokosc: ";
// I don't see what i'm typing too and make my program crash
cin >> height;
World(height, width);
}
cout工作很好,但cin是soooo buged。 雖然第一個cin我沒有看到我在輸入什麼,我需要按兩次輸入; 雖然SECEND CIN我什麼也沒看到過,雖然我按任意鍵,程序崩潰C++ <iostream> cin不能正常工作
的代碼你展示我們應該工作。你的問題在別處。 –
你覺得'世界(高度,寬度)是多少'? –
我的建議是學會使用調試器。並且不要急於認爲您發現了某種類型的編譯器或系統錯誤。 – drescherjm