Initiate

Call A Spade a Spade
posts - 14, comments - 3, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

POJ1663

Posted on 2010-02-09 22:27 Initiate 阅读(113) 评论(0)  编辑 收藏 引用

简单水题找规律

#include<iostream>
using namespace std;
int t,n,m,k;
int f(int a,int b)
{
 if(a==b){
  if(a%2==0) return 2*a;
  else return 2*a-1;}
 else if(a-2==b){
  if(a%2==0) return a+b;
  else return a+b-1;}
 else return -1;
 }
int main()
{
 cin>>t;
 while(t--)
 {
  cin>>m>>n;
  k=f(m,n);
  if(k==-1) cout<<"No Number"<<endl;
  else cout<<k<<endl;
  }
 return 0;
 }
阅读全文
类别:默认分类 查看评论

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理