HJ17.坐标移动

描述

       开发一个坐标计算工具, A表示向左移动,D表示向右移动,W表示向上移动,S表示向下移动。从(0,0)点开始移动,从输入字符串里面读取一些坐标,并将最终输入结果输出到输出文件里面。例如:

A10;S20;W10;D30;X;A1A;B10A11;;A10;
处理过程: 起点(0,0)

  • A10 = (-10,0)

  • S20 = (-10,-20)

  • W10 = (-10,-10)

  • D30 = (20,-10)

  • x = 无效

  • A1A = 无效

  • B10A11 = 无效

  • 一个空 不影响

  • A10 = (10,-10)

结果 (10, -10)

#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
using namespace std;

int main()
{
    int x = 0, y = 0;
    string in_str;
    getline(cin, in_str);

    vector<string> vec;
    stringstream ss(in_str);
    string s;

    cout << "in_str\t" << in_str << endl;
    while (getline(ss, s, ';')) {
        vec.emplace_back(s);
        cout << "s\t" << s << endl;
    }
    for (int i = 0; i < vec.size(); i++) {
        if (vec[i][0] == 'A') {
            x -= atoi(s.c_str() + 1);
        }
        if (vec[i][0] == 'S') {
            y -= atoi(s.c_str() + 1);
        }
        if (vec[i][0] == 'W') {
            y += atoi(s.c_str() + 1);
        }
        if (vec[i][0] == 'D') {
            x += atoi(s.c_str() + 1);
        }
    }
    cout << x << ',' << y << endl;

    return 0;
}

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值