报错
严重性 代码 说明 项目 文件 行 禁止显示状态错误 C4996 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. ConsoleApplication4 D:\编程\C语言学习\C语言文件垃圾库\ConsoleApplication4\ConsoleApplication4.cpp 6
输入scanf报错,怎么办
这个错误是因为使用了不安全的scanf函数,可以考虑使用scanf_s函数来代替。如果你不想看到这个错误,可以在代码中添加#define _CRT_SECURE_NO_WARNINGS,来禁用这个警告。下面是一个使用scanf_s函数的示例:
#include <stdio.h>
int main() {
int num;
printf("请输入一个整数:");
scanf_s("%d", &num);
printf("你输入的整数是:%d\n", num);
return 0;
}
在这个示例中,我们使用了scanf_s函数来接收用户输入的整数,并将其存储在num变量中。
页:
[1]