现在的位置: 首页 > 综合 > 正文

URAL 1409 Bishops 思维问题

2013年10月02日 ⁄ 综合 ⁄ 共 1197字 ⁄ 字号 评论关闭

Description

Two gangsters Harry and Larry had a rest at countryside. They decided to spend some time shooting, so they put several beer cans (no more than 10) on a log. Harry started to shoot cans one after another
from the leftmost to the right and Larry – from the rightmost to the left.

At some moment it happened so that they shot one and the same can.
Harry got indignant and claimed that Larry owed him a considerable sum of money because Larry deprived him of shooting some more cans. Larry became furious and told Harry that he owed even greater sum of money to Larry because
of the same reason. They started to argufy but nobody remembered how many cans there were at the very beginning. And no one of them was going to search cans which was shot. Anyway, each of them remembered exactly how many cans he shot.
Determine how many cans were not shot by Harry and how many cans were not shot by Larry.

Input

The only input line contains two integers — the number of cans shot by Harry and by Larry respectively.

Output

two integers — the number of cans that were not shot by Harry and the number of cans that were not shot by Larry, respectively.

Sample Input

input output
4 7
6 3

典型的思维问题啊~~要注意的这句话,就出来了 红字标的

还要考虑 两个数中含有0的情况

post code:

#include<stdio.h>
int main()
{
   int a,b,sum;
   while( scanf("%d %d",&a,&b)!=EOF )
   { 
    if(a!=0&&b!=0)  
       {
       sum=a+b-1;
       printf("%d %d\n",sum-a,sum-b);       
       } 
    else {              //这是其中一个含有0的情况
           sum=a+b; 
           printf("%d %d\n",sum-a,sum-b);
         
         }   
   }    
    
}

抱歉!评论已关闭.