Java解 | #HJ17坐标移动#
Posted 闭关苦炼内功
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java解 | #HJ17坐标移动#相关的知识,希望对你有一定的参考价值。
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
while(in.hasNext()){
int x=0,y=0;
String[] arr = in.next().split(";");
for(int i=0;i<arr.length;i++){
if(arr[i].length() >= 2 && arr[i].length() <= 3 && arr[i].charAt(1) >= '0' && arr[i].charAt(1) <= '9'){
if(arr[i].length() == 2 || arr[i].length() == 3 && arr[i].charAt(2) >= '0' && arr[i].charAt(2) <= '9'){
if(arr[i].charAt(0) == 'A'){
x = x - Integer.parseInt(arr[i].substring(1));
}
if(arr[i].charAt(0) == 'D'){
x = x + Integer.parseInt(arr[i].substring(1));
}
if(arr[i].charAt(0) == 'W'){
y = y + Integer.parseInt(arr[i].substring(1));
}
if(arr[i].charAt(0) == 'S'){
y = y - Integer.parseInt(arr[i].substring(1));
}
}
}
}
System.out.println(x + "," + y);
}
}
}
以上是关于Java解 | #HJ17坐标移动#的主要内容,如果未能解决你的问题,请参考以下文章