题解 AT5638 November 30
Posted tearing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 AT5638 November 30相关的知识,希望对你有一定的参考价值。
题目中有 (4) 个数字,但是 (c) 和 (d) 似乎并没有什么用……
首先,我们把每个月的天数存入数组中,因为题目中给了我们年份—— (2019),因此 (2) 月是 (28)天。
接着,如何判断是不是最后一天呢?只需要看 (b) 是不是那个月的总天数就可以了。
最后,不难写出代码:
#include <iostream>
#include <cstdio>
#include <cmath>
int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int main()
{
int a, b;
scanf("%d%d", &a, &b);
if (month[a] == b)puts("1");
else puts("0");
}
以上是关于题解 AT5638 November 30的主要内容,如果未能解决你的问题,请参考以下文章
November 30th 2016 Week 49th Wednesday
read ECONNRESET at TLSWrap.onStreamRead (internal/stream_base_commons.js:209:20) { errno: -4077(代码片段