Skip to content
Permalink
76f84e8963
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (15 sloc) 292 Bytes
#include "countdown.h"
using namespace std;
string user_answer;
void countdown1()
{
for (int i = 10; i >= 0; i--)
{
cout << i << endl;
Sleep(1000);
}
system("cls");
cout << "Write the letters in the order that was shown: " << endl;
cin >> user_answer;
memorycheck(user_answer);
}