\\ this tut shows you how to interact with the program #include // you may recognise this from the previous tutorial int main() { int pickanumber; // here we initiate a number cout << "Please enter a number:"; // this tells the user what to do cin> > pickanumber; // when a button is pressed this inputs it into the program cin stands for current input in this case it is packanumber cout << "I bet the number you pressed was: "<< pickanumber; // this then displays the number pressed return system("pause"); // this pauses the program and waits for a user response before ending the program }