- Code: Select all
int main()
{
system("TITLE Stopwatch 1.0 - Morags");
cout << "\nWelcome to Stopwatch 1.0\n\n\n";
system("pause");
int counter = 0;
int choice;
for(;;)
{
system("cls");
cout << "\n";
cout << counter;
Sleep(1000);
counter++;
continue;
}
return 0;
}
