我要求输入 int,然后检查它是否等于正确答案,但是如何防止用户输入字符?
int main()
{
int response;
int answer;
scanf("%f", &response);
if(response == answer)
{
//Correct!
}
else
{
//Incorrect!
}
}