题解 | #坐标移动#
坐标移动
http://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29
将字符串按";"拆分,再进行正则匹配,再把字母与数字拆开,然后用个switch
import java.util.*;
/*
* 编写一个程序,将输入字符串中的字符按如下规则排序。
规则 1 :英文字母从 A 到 Z 排列,不区分大小写。
如,输入: Type 输出: epTy
规则 2 :同一个英文字母的大小写同时存在时,按照输入顺序排列。
如,输入: BabA 输出: aABb
规则 3 :非英文字母的其它字符保持原来的位置。
如,输入: By?e 输出: Be?y
数据范围:输入的字符串长度满足 1 \le n \le 1000 \1≤n≤1000
* */
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
String[] split = str.split("[;]");
int x = 0;
int y = 0;
for (int i = 0; i < split.length; i++) {
if(split[i].matches("[WASD][0-9]{1,2}")){
int zb = Integer.parseInt(split[i].substring(1));
char c = split[i].charAt(0);
switch (c){
case 'A':
x -= zb;
break;
case 'S':
y -= zb;
break;
case 'W':
y += zb;
break;
case 'D':
x += zb;
break;
}
}
}
System.out.println(x + "," + y);
}
}