ZOJ 1414 Number Steps

题目地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=414

水题。找规律,给出坐标要求输出数。

#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
	int n;
	cin>>n;
	for(int i=0;i<n;i++){
		int a,b;
		cin>>a>>b;
		if(a-b!=2&&a!=b)
			cout<<"No Number"<<endl;
		else{
			if(b%2==0||b==0){
				if(a==b)
					cout<<2*a<<endl;
				if(a-b==2)
					cout<<a+b<<endl;
			}
			else{
				cout<<a+b-1<<endl;
			}
		}
	}
	return 0;
}


你可能感兴趣的:(ZOJ)