2019/12/7 vs studio 中scanf_s()问题
Posted epll
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2019/12/7 vs studio 中scanf_s()问题相关的知识,希望对你有一定的参考价值。
代码:sum = sum_oil(num_oil, kind_oil, kind_sev);
问题:“scanf_s”: 没有为格式字符串传递足够的参数
参考解决方案:(1)微软官网查询https://docs.microsoft.com/zh-cn/cpp/c-runtime-library/reference/scanf-s-scanf-s-l-wscanf-s-wscanf-s-l?view=vs-2019
(2) scanf_s()对字符比较严格,需要知道输入字符所占空间的大小,所以要在后边添加上字符的大小。
scanf_s("%lf,%c,%c",&num_oil,&kind_oil,1,&kind_sev,1);
以上是关于2019/12/7 vs studio 中scanf_s()问题的主要内容,如果未能解决你的问题,请参考以下文章
Progressive Scanning (逐行扫描) vs Interlaced Scanning (隔行扫描)
visual studio乱码怎么办 vs繁体中文乱码问题解决方法
使用以前版本的 Visual Studio 的 devenv 从 VS2017 测试 Visual Studio 扩展不起作用