000
03.06.2007, 16:16 Uhr
sonnenblümchen
|
hy, meine idee ist es ein wort von oben reinlaufen zu lassen und wenn es in der mitte ist sollte es sich löschen und das nächste wort sollte reinlaufen (von oben). das mit dem reinlaufen klappt aber ich kreig es nicht hin das es in der mitte stehen bleibt und dann sich löscht. weis nicht wo ich das clrscr() hinschreiben muss.
C++: |
#include <cstdlib> #include <iostream> #include "conio2.h" #include "MM-head.h"
using namespace std;
void master () { int xPos, yPos; for (yPos = 5; yPos <= 7; yPos++) { for(xPos = 1; xPos < 181; ++yPos) { clrscr(); a(xPos, yPos); _sleep(100); } } } // void delline
void a (int xPos, int yPos) {textcolor(LIGHTRED); gotoxy(xPos, yPos); // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(WHITE); cout<<"###################################################################" << endl; // textbackground(WHITE); // textcolor(WHITE); cout << "## # ### # ### # ### # # # ## # ### ##" << endl ; // textbackground(LIGHTRED); // textcolor(LIGHTRED); cout << "#### ### ### # ### # ## # ##### # ## # ### # ### ##"<< endl ; // textbackground(WHITE); // textcolor(WHITE); cout<< "#### ### # ### # # # # ## ## # ###### ##"<< endl ; // textbackground(LIGHTRED); //textcolor(LIGHTRED); cout<<"#### ### ### # ### # # # ##### # ### # ### # ### ##"<< endl ; // textbackground(BLACK); // textcolor(WHITE); cout<<"#### ### ### ## ## #### ## ##### # ## ## ### ##"<< endl ; // textcolor(LIGHTRED); cout<<"# #"<< endl ; // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(LIGHTRED); cout<<"###################################################################"<< endl ; // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(LIGHTRED); cout<<"###################################################################"<< endl ; // textcolor(WHITE); cout<<"###################################################################"<< endl ; // textcolor(LIGHTRED); cout<<""; // textcolor(WHITE); cout<<"" << endl;
|
Dieser Post wurde am 03.06.2007 um 16:42 Uhr von sonnenblümchen editiert. |