C 错误 C4996 ‘scanf’: This function or variable may be unsafe. Consider

C 严重性 代码 说明 项目 文件 行 禁止显示状态 详细信息 错误 C4996 ‘scanf’: This function or variable may be unsafe. Consider

#include<stdio.h>  

int main() { 
	 
	int aa = 0;

	printf("请输入金额");  
	
	scanf_s("%d", &aa);   //scanf()  改为 scanf_s()

	int chang = 100 - aa;

	printf("%d \n", chang);
	
	return 0;

}

发表评论

邮箱地址不会被公开。