1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
gotoXY(55,5); // Function to place text at specified location
cout << "To open up a space to reveal";
gotoXY(57,6);
cout << "possible mine locations,";
gotoXY(56,7);
cout << "use column letter and two";
gotoXY(61,8);
cout << "digits for row.";
gotoXY(59,9);
cout << "Example : H07 [enter]";
gotoXY(56,12);
cout << "To flag a space as a mine,";
gotoXY(56,13);
cout << "use the column letter, two";
gotoXY(58,14);
cout << "digits for row and the ";
gotoXY(56,15);
cout << "letter 'F', for FLAG MINE";
gotoXY(57,16);
cout << "Example : H07F [enter]";
gotoXY(63,19);
cout << ": WARNING :";
gotoXY(61,20);
cout << "Game is over if";
gotoXY(61,21);
cout << "no mine present";
gotoXY(58,22);
cout << "at selected location.";
gotoXY(56,25);
cout << "NOTE : You may use lower,";
gotoXY(61,26);
cout << "or upper case, letters";
|