Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136005 丁俊杰 08判断是否为闰年 C++ Compile Error 0 MS 0 KB 275 2025-11-08 19:59:52

Tests(0/0):


Code:

#include <iostream> // 里面有cin,cout等函数 #include<cmath> //里面有abs,sqrt,pow等函数 using namespace std; int main(){ int x; cin>>x; if(x%400==0) cout<<"Yes"; else if(x%4==0&&x%100!=0) cout<<"Yes"; else cout<<"No";


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:13: error: expected '}' at end of input
   cout<<"No";
             ^