Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145901 张奕杨 09闰年第n个月有多少天 C++ Wrong Answer 0 MS 272 KB 165 2026-01-25 19:30:38

Tests(1/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,m[12]={31,29,31,30,31,30,31,31,30,31,30,31}; cin>>a; cout<<m[a-1]; return 0; }


Run Info:

------Input------
0
------Answer-----
Invalid.
------Your output-----
0