| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145994 | 冰块ee | 09闰年第n个月有多少天 | C++ | Wrong Answer | 0 MS | 272 KB | 138 | 2026-01-25 20:09:26 |
#include <iostream> using namespace std; int main(){ int n,a[15]={31,29,31,30,31,30,31,31,30,31,30,31}; cin>>n; cout<<a[n]; }
------Input------
3
------Answer-----
31
------Your output-----
30