How to put loading design in C++
Monday, November 7, 2011
Wonder how to put a loading design in C++? The ASCII Table will be necessary in your design.
Here is my example:
and Here is my code:
/*I got this idea from Engr. Billy Jo from MAPUA. :"> */
cout<<"\n\n\n\n\n\t\t\t Loading...Please Wait...";
cout<<"\t\t\t";
gotoxy(3,9);
printf("\t\t\tÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»");
gotoxy(3,10);
printf("\t\t\tº°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°º");
gotoxy(3,11);
printf("\t\t\tÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ");
for(int k=25;k<58;k++)
{
Sleep(90);
gotoxy(k,10);
printf("±");
}
Sharing is so Easy: |
Labels:
C++,
Programming