Homepage of E-Pay Project in C++

 #include<iostream>

#include<iomanip>  //For Using some Maniplulaters

#include<windows.h>    //For Timing Function

using namespace std;

void HomePage();    //HomePage Declaration

int main()

{

HomePage();        //Invoking of HompePage

}

void HomePage()

{

cout<<"\n\n\n\n";

cout<<setw(50)<<"LOADING..\n   \t\t";

char x=32;

for(int i=0;i<33;i++)

{

cout<<x;

if(i>=0&&i<11)

Sleep(300);

if(i>10&&i<24)

Sleep(150);

if(i>23&&i<33)

Sleep(400);

}

}

Comments