标签:
Description
Today is Wednesday, the third day of the week. What‘s more interesting is that tomorrow is the last day of the year 2015.
Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming year 2016.
Limak wants to prove how responsible a bear he is. He is going to regularly save candies for the entire year 2016! He considers various saving plans. He can save one candy either on some fixed day of the week or on some fixed day of the month.
Limak chose one particular plan. He isn‘t sure how many candies he will save in the 2016 with his plan. Please, calculate it and tell him.
Input
The only line of the input is in one of the following two formats:
Output
Print one integer — the number of candies Limak will save in the year 2016.
Sample Input
4 of week
52
30 of month
11
Hint
Polar bears use the Gregorian calendar. It is the most common calendar and you likely use it too. You can read about it on Wikipedia if you want to – https://en.wikipedia.org/wiki/Gregorian_calendar. The week starts with Monday.
In the first sample Limak wants to save one candy on each Thursday (the 4-th day of the week). There are 52 Thursdays in the 2016. Thus, he will save 52 candies in total.
In the second sample Limak wants to save one candy on the 30-th day of each month. There is the 30-th day in exactly 11 months in the 2016 — all months but February. It means that Limak will save 11 candies in total.
题目大意:输入N 和of week就是问2016年有几个星期N
输入N 和of month就是问2016年有几个N号
#include <stdio.h> #include <string.h> int main(){ int e; char a[]={"week"}, c[100], d[100]; scanf("%d%s%s", &e, c, d); if(strcmp(a,d)==0){ if(e==5||e==6) printf("53\n"); else printf("52\n"); } else{ if(e==30) printf("11\n"); else if(e==31) printf("6\n"); else printf("12\n"); } }
标签:
原文地址:http://www.cnblogs.com/Noevon/p/5393418.html