| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145995 | 冰块ee | 09闰年第n个月有多少天 | C++ | Wrong Answer | 0 MS | 268 KB | 138 | 2026-01-25 20:09:43 |
#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-1]; }
------Input------
0
------Answer-----
Invalid.
------Your output-----
0