题库 信息学奥赛题库 题目列表 2017年noip提高组初赛阅读程序题:#include <...
填空题

2017年noip提高组初赛阅读程序题:

#include <iostream>
usingnamespacestd;
int main()
{
    int n, m;
    cin >> n >> m;
    int x = 1;
    int y = 1;
    int dx = 1;
    int dy = 1;
    int cnt = 0;
    while (cnt != 2)
    {
        cnt = 0;
        x = x + dx;
        y = y + dy;
        if (x == 1 || x == n)
        {
            ++cnt;
            dx = -dx;
        }
        if (y == 1 || y == m)
        {
            ++cnt;
            dy = -dy;
        }
    }
    cout << x << " " << y << endl;
    return0;
}

输入 1:4 3 

输出 1:_________

输入 2:2017 1014 

输出 2:_________

输入 3:987 321 

输出 3:_________

题目信息
阅读程序 2017年 初赛
-
正确率
0
评论
119
点击