Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
50506 | eric | 天问一号 | C++ | Compile Error | 0 MS | 0 KB | 346 | 2024-08-27 18:00:40 |
#include<iostream> using namespace std; int main() { int y,m; cin>>y>>m; if(m==1||m==3||m==5||m==7||m==8||m==10||m==12){ cout<<31; } else if(m==4||m==6||m==9||m==11){ cout<<30; } else if(y%4==0&&y%100!=0||y%400==0) { cout<<29 } else { cout<<28; } return 0; }