Hilfe mit improved Console
-
Hilfe!
Mein Quelltext (Auszüge):{ do { if (hauptmenue_firstrun) { colcout.setcolor (BG_BLUE); colcout << "Bitte waehlen..." << endl; hauptmenue_firstrun=false; } else { colcout << "\nBitte waehlen..." << endl; } colcout << "[1] Widerstandswert aus Farbcodes ermitteln" << endl; colcout << "[2] Farbcodes aus Widerstandswert ermitteln" << endl; colcout << "[3] Beenden..." << endl; cin >> hauptmenue_wahl; switch (hauptmenue_wahl) { case 1: widerstandswert_erm (); break; case 2: farbcode_erm (); break; case 3: hauptmenue_weiter=false; break; default: eingabefehler (); break; } } while (hauptmenue_weiter); }
als Ergebnis in der Konsole ist alles wie es sein soll, außer das hinter jedem der ... 004010BE steht.
PS.: Bin blutiger Anfänger
-
Der scheint mein endl nicht haben zu wollen. Wenn ichs so
colcout << "Blablablabla"; colcout << "\nBlablablabla"; ...
mache, geht einwandfrei.