1. 程式人生 > >2017年浙工大迎新賽熱身賽 Lcayun日常之賞月【易錯特判】

2017年浙工大迎新賽熱身賽 Lcayun日常之賞月【易錯特判】

pre 周期 yun namespace != names bject cpp div

題目描述

在cayun星球月亮大小都有一個規律,月亮為每30天一個周期,在這30天的周期裏,月亮的大小分別為0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1,雖然天氣很冷,但某個cayun今天卻異常瘋癲,不知為何居然想要賞月了。但他想在賞月之前知道今天的月亮到底有多大。

輸入描述:

第一行數據組數T(T <= 30),
對於每組數據兩個整數a, b(0 <= a, b <= 15),表示前兩天的月亮大小,保證數據是合法的。

輸出描述:

每組數據占一行,表示今天的月亮大小。
示例1

輸入

2
0 1
11 10

輸出

2
9
【分析】:註意14 15->14以及1,0->1
【代碼】:
// 2017年浙工大迎新賽熱身賽
#include <bits/stdc++.h>
using namespace std;
int t,n,m;

int main()
{
    cin>>t;
    while(t--)
    {
        cin>>n>>m;
        if(n==14&&m==15)
        {
            printf("14\n");
        }
        if(n==1&&m==0)
        {
            printf("1\n");
        }
        if(n<m&&(n!=14&&m!=15)) printf("%d\n",m+1);
        if(n>m&&(n!=1&&m!=0)) printf("%d\n",m-1);
    }
}

  

2017年浙工大迎新賽熱身賽 Lcayun日常之賞月【易錯特判】