美文网首页
acmtest1.h

acmtest1.h

作者: wolfway_d0ff | 来源:发表于2018-12-09 21:40 被阅读0次

    能到达的情况为s大于等于坐标绝对值相加,且当距离减坐标后,产生的数为偶数。此处注意要加abs时a,b通用于正负数。
    ...

    include<iostream>

    using namespace std;
    int main()
    {
    int a, b, s;
    cin >> a >> b >> s;
    if (s >=abs(a) + abs(b))
    {
    if ((s - abs(a) -abs(b)) % 2 == 0)
    cout << "Yes" << endl;
    else
    cout << "No" << endl;
    }
    else
    cout << "No" << endl;
    return 0;
    }
    ...

    相关文章

      网友评论

          本文标题:acmtest1.h

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