哪里錯了找不到
#include <stdio.h>
int main()
{
??? int year = 2014; //今年是2014年
??? //補全一下代碼
??? if(year%4==0&&year%100!=0||year%400==0)
??? {
??????? printf(“s%\n”,"今年是閏年");
??? }
??? else
??? {
??????? printf("s%\n","今年是平年");
??? }
???
???
???
???
???
??? return 0;
}
2020-03-21
是%s不是s%