79607568

Date: 2025-05-05 20:11:18
Score: 0.5
Natty:
Report link

if you in Windows there is a second way:

for (i=0; i<n; i++){
    //if Enter key press down
    if (GetKeyState(VK_RETURN) & 0x8000){
        //wait for Enter press up
        while (GetKeyState(VK_RETURN) & 0x8000) {}
        dosomething();
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PouriaDiesel