Code Bye

一运行就出现问题停止运行 求指导

#include <stdio.h>
int main(void)
{
printf(“Beware the Idea Of March!%s”,2+3+1);
return 0;
}
解决方案

80

%s改成 %d

2+3+1 改成 “2+3+1”

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明一运行就出现问题停止运行 求指导