我試圖檢測一個按鍵來確定用戶是否想再次播放,但msvcrt.getch()只是不適合我。這是我的代碼: import msvcrt
#the game here
print "Do you want to continue? Y/N"
if msvcrt.getch() == 'Y' or msvcrt.getch() == 'y':
print"Let's pl
我已經在Linux mint中安裝了ncurses庫,但我仍然不能在c中使用getch函數。我正在使用Linux mint 18.2。 這裏是我的程序: #include <stdio.h>
#include <curses.h>
int main() {
char k;
printf("how are you");
k = getch();
pri