zoukankan      html  css  js  c++  java
  • H

    The Universidad Nacional de Colombia (UN) was created on September 22 of 1867, a Sunday. In 2017 the UN had its sesquicentenary, i.e. it was its 150th birthday. The sesquicentenary of the UN was on a Friday. As it is really important to know all the details corresponding to the date of this huge celebration for every year, we want to know which day of the week corresponds to a specific birthday of the Universidad Nacional de Colombia.

    Remember that a year usually has 365 days, except for some years, called leaps-years which have 366 days. To know which year is a leap-year we have the following rule: Every year that is exactly divisible by four is a leap year, except for years that are exactly divisible by 100, but these centurial years are leap years if they are exactly divisible by 400. For example, the years 1700, 1800, and 1900 were not leap years, but the years 1600 and 2000 were.

    Input

    The input consists of a number n (0 ≤ n ≤ 10000)

    Output

    Output just one word corresponding to the day of the week at the n - th birthday of the UN.

    Print the day on the following format (without quotation marks): 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' or 'Sunday'.

    Examples

    Input
    0
    Output
    Sunday
    Input
    150
    Output
    Friday
     1 #include <iostream>
     2 #include<stdio.h>
     3 #include<stdlib.h>
     4 using namespace std;
     5 int main()
     6 {
     7 
     8     int n;
     9     scanf("%d",&n);
    10     int p=1867;
    11     int ans=6;
    12     for(int i=p; i<=n+p; i++)
    13     {
    14         if((i%4==0&&i%100!=0)||(i%400==0))
    15             ans+=2;
    16         else ans+=1;
    17     }
    18     int t;
    19     t=ans%7;
    20     if(t==1)
    21         printf("Monday
    ");
    22     else if(t==2)
    23         printf("Tuesday
    ");
    24     else if(t==3)
    25         printf("Wednesday
    ");
    26     else if(t==4)
    27         printf("Thursday
    ");
    28     else if(t==5)
    29         printf("Friday
    ");
    30     else if(t==6)
    31         printf("Saturday
    ");
    32     else if(t==0)
    33         printf("Sunday
    ");
    34     return 0;
    35 }
  • 相关阅读:
    SAM4E单片机之旅——2、LED闪烁之轮询定时器
    SAM4E单片机之旅——1、LED闪烁之空循环
    C#使用WinAPI 修改电源设置,临时禁止笔记本合上盖子时睡眠
    阻止系统自动睡眠的小软件,附C#制作过程
    Python3做采集
    判断浏览器类型
    任意几个数求和
    常见Z纯CSS小样式合集(三角形)
    数据脱敏项目中遇见的问题
    点击左侧跳到右侧
  • 原文地址:https://www.cnblogs.com/kk4123366-n/p/9738883.html
Copyright © 2011-2022 走看看