这个我该怎么改呀?为什么会缺少scanf_s的整型参数什么的
scanf 不需要指定长度,scanf_s 需要指定长度
这么改:scanf_s("%s%s%s", str1, 5, str2, 5, str3, 5);