#16622: C++ answer


transform1579@gmail.com (吳孟城)

學校 : 不指定學校
編號 : 90587
來源 : []
最後登入時間 :
2019-01-14 14:40:43
c315. I, ROBOT 前傳 | From: [118.163.122.180] | 發表日期 : 2019-01-22 21:21

#include <cmath>

#include <cstdio>

#include <vector>

#include <iostream>

#include <algorithm>

using namespace std;

 

 

int main() {

    int N;

    //cout << "請輸入共有幾行指令" << endl;

    cin >> N;

    int x=0, y=0;

    int *ptrx=&x, *ptry=&y;

    for (int i=0; i<N; i++){

        int a,b;

        //cout << "請輸入方向" << endl;

        cin >> a;

        //cout << "請輸入距離" << endl;

        cin >> b;

        if (a==0){

            x=x+b;

        }

        else if(a==1){

            y=y+b;

        }

        else if(a==2){

            x=x-b;

        }

        else if(a==3){

            y=y-b;

        }

    }

    cout << *ptry << " " << *ptrx <<endl;

    return 0;

}

 
ZeroJudge Forum