POJ 1663

作者: vanadia | 来源:发表于2016-08-31 01:32 被阅读0次

    POJ 1663

    题意

    找规律

    思路

    分成两种情况x==y和x==y+2;x == y的时候 再根据x或者y的奇偶分情况讨论
    很简单,没什么好说的。

    #include <iostream>
    using namespace std;
    
    int main(int argc, char const *argv[])
    {
        int n,x,y,ans;
        cin>>n;
        while(n--){
            cin>>x>>y;
            if(x == y){
                if(x%2==0)
                    ans =2*x;
                else
                    ans = 2*x -1;
            }
                
            else if(x == y+2){
                if(x%2 == 0)
                    ans = 2*x - 2;
                else
                    ans = 2*x - 3;
            }   
            else{
                cout<<"No Number"<<endl;
            }
            cout<<ans<<endl;
        }
        
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:POJ 1663

          本文链接:https://www.haomeiwen.com/subject/qdsqettx.html