UESTC 1034 AC Milan VS Juventus 分情况讨论

ProLightsfx 2016-3-20 389 3/20

AC Milan VS Juventus 分情况讨论

Source

The 13th UESTC Programming Contest Preliminary
The question is from
here.

My Solution

分情况讨论清楚就好,然后注意 a == b 的时候也是
No
把分类出来的区间理清楚,不要条件里面混杂着不该包含的东西
 
#include 
#include 
#include 
using namespace std;

int main()
{
    int a, b;
    scanf("%d%d", &a, &b);
    if(a == b )printf("No");
    else if((a == 5 && b <5) || (b == 5&& a <5)) {if(abs(a-b) >= 3) printf("No");else printf("Yes"); }  //!!
    else if(a < 5 && b <5) {if(abs(a-b) >= 4) printf("No");else printf("Yes"); }
    else {if(abs(a-b) > 1) printf("No");else printf("Yes"); }
    return 0;
}

非特殊说明,本博所有文章均为博主原创,未经许可不得转载。

https://www.prolightsfxjh.com/

Thank you!

                                                                                                                                             ------from ProLightsfx

 

- THE END -
Tag:

ProLightsfx

11月16日01:27

最后修改:2024年11月16日
0

非特殊说明,本博所有文章均为博主原创,未经许可不得转载。

共有 0 条评论