warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result
这个是C语言当中常见的错误,意思是对于输入的scanf参数的内容,没有进行类型判断,所以才会产生这个问题.解决方法:1、添加if判断方式1if(scanf("%d",&a)==1){2//成功继续执行其他代码3}ViewCode2、其它类型判断方式扩展1if(scanf("%d",&a)==1){2//成功继续执行其他代码3}45if(scanf("%f",&a)==1){6//成功继续执行其他代