http://cur.lv/4x9e0 (Earn Bitcoins)
#include <iostream>
#include <cstdlib>
#include "header.h"
using namespace std;
int main()
{
while(1)
{
int menu;
cout << "--------------------------------------------------------------------------------" << endl;
cout << " Hello Welcome!" << endl;
cout << " Press Any Enter To Enter The Menu" <<endl;
cout << "--------------------------------------------------------------------------------" << endl;
cin.get();
star:
system("cls");
cout << "1.Print the number" << endl;
cout << "2.Time Transform(M >> H,M)" << endl;
cout << "0.Exit" << endl;
cout << "Please select the number:";
cin >> menu ;
system("cls");
if(menu==1)
{
out();
goto star;
}
if(menu==2)
{
tt();
goto star;
}
if(menu==0)
{
break;
}
else
{
cout << "You fucking retarded" ;
system("pause");
goto star;
}
}
return 0;
}