008
25.04.2003, 14:22 Uhr
Pablo
Supertux (Operator)
|
Dass C++ alleine die Wörte erzeugt, ist schwierig. Du könntest ein "map" benutzen, map über char* und int.
C++: |
#include <map> #include <iostream.h>
int main() { map<int, char*> data_base; // map initialisieren data_base[1] = "Hallo"; data_base[2] = "Welt"; * * * data_base[100] = "Blabla";
// nehmen wir an, wie haben schon eine Zufallszahl im Bereich [1, 100] // Zufallszahl in i gespeichert. cout << "Das Wort ist: " << data_base[i] << endl; }
|
Ich hoffe, das hilft dir weiter. -- A! Elbereth Gilthoniel! silivren penna míriel o menel aglar elenath, Gilthoniel, A! Elbereth! |