Advertisement
thienlang

nhận phím

Apr 27th, 2014
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2. #include <Windows.h>
  3. #include <conio.h>
  4. using namespace std;
  5.  
  6. //hàm lấy trạng thái phím
  7. inline bool IsPressed( int presskey )
  8. {
  9.     return GetAsyncKeyState( presskey );//lấy trạng thái phím nhập vào
  10. }
  11.  
  12. void main()
  13. {
  14.     int i = 0;
  15.     while ( !IsPressed(VK_RETURN))
  16.     {
  17.  
  18.             Sleep(100);
  19.             system("cls");
  20.             cout << i++;
  21.    
  22.         if ( IsPressed(VK_RETURN))
  23.         {
  24.             _getch();
  25.  
  26.         }
  27.     }
  28.     _getch();
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement