用C语言编写程序,实现以下功能(要求用if语句编写):

2024-12-30 12:50:02
推荐回答(2个)
回答1:

#include "stdafx.h"
#include

int _tmain(int argc, _TCHAR* argv[])
{
int key = getch();

if(key == '1')
printf("excellent\n");
else if(key == '2')
printf("good\n");
else if(key == '3')
printf("pass\n");
else if(key == '4')
printf("fail\n");
else
printf("error\n");

return 0;
}

其实用switch更好

回答2:

getch()返回的数字键和ascii码是一致的