954,480 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

C++ Creating a counting how many times you press enter game

HELP!! can someone please help me, because i need to create a game in which i have to count how many times i've pressed enter in a matter of 1 minute.

cheers07
Newbie Poster
5 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
 

What operating system and what compiler ? The easiest way to capture the Enter key would be to use the non-standard functions in conio.h, but your compiler may or may not support that.

Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

we use Visual basic 2005 for the c++, my group and i have no idea on how we will be able to do this. can you help me?

cheers07
Newbie Poster
5 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
 
What operating system and what compiler ? The easiest way to capture the Enter key would be to use the non-standard functions in conio.h, but your compiler may or may not support that.

we use Visual 2005 for the c++, my group and i have no idea on how we will be able to do this. can you help me?:)

cheers07
Newbie Poster
5 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
 

I'm not going to write the program for you, but to get the Enter keys

while(_kbhit() )
{
   int c = getche();
   if( c == '\n' )
   {
      printf("got one\n");
   }
}
Ancient Dragon
Retired & Loving It
Team Colleague
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
 

I'm not going to write the program for you, but to get the Enter keys

while(_kbhit() )
{
   int c = getche();
   if( c == '\n' )
   {
      printf("got one\n");
   }
}

thanks a lot! this would do! Thanks again :)

cheers07
Newbie Poster
5 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: