进来看一下
#include <stdio.h>int main()
{
int i;
printf("您老贵庚啊:");
scanf("%d", i);
if (i >= 18)
{
printf("进门左拐!\n");
}
else
{
printf("慢走不送!\n");
}
return 0;
}
这个用VS输出显示错误为啥啊
错误,码
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 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. hello2 C:\Users\Administrator\Desktop\C\hello2\hello2\源.c 8
我在百度找到答案了 已经解决了 VS2019 都是这个通病 对于scanf 函数是属于不安全范围 需要修改稳当属性 之后就可以正常输出了 只学C的话,可以用VSCODE, 比VS2019强 scanf("%d", &i);
页:
[1]