题解 | #坐标移动#

坐标移动

https://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String input = scan.nextLine();
        String[] steps = input.split(";");
        int[] location = new int[2];
        for (int i = 0; i < steps.length; i++) {
            if(steps[i].length() < 2){
                continue;
            }
            for(int j = 1; j < steps[i].length(); j++){
                char c = steps[i].charAt(j);
                if(c < '0' || c > '9'){
                    i++;
                    break;
                }
            }
            if(i == steps.length){
                break;
            }
            char direction = steps[i].charAt(0);
            if(steps[i].charAt(0) == 'A'){
                location[0] -= Integer.parseInt(steps[i].substring(1));
            }else if(steps[i].charAt(0) == 'D'){
                location[0] += Integer.parseInt(steps[i].substring(1));
            }else if(steps[i].charAt(0) == 'W'){
                location[1] += Integer.parseInt(steps[i].substring(1));
            }else if(steps[i].charAt(0) == 'S'){
                location[1] -= Integer.parseInt(steps[i].substring(1));
            }
        }
       System.out.print(location[0] + "," + location[1]);
    }
}

全部评论

相关推荐

昨天 13:08
蚌埠坦克学院 C++
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
我朋友的华子2012,HR已经开始问意向地区了,好急
不讲武德的黑眼圈很能干:急得不行 也不说评级 不知道报的多少啊😡
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务