欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > java >内容正文

java

牛客网——华为机试(题17:坐标移动)(Java)

发布时间:2025/4/16 java 50 豆豆
生活随笔 收集整理的这篇文章主要介绍了 牛客网——华为机试(题17:坐标移动)(Java) 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

题目描述:

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

输入:

合法坐标为A(或者D或者W或者S) + 数字(两位以内)

坐标之间以;分隔。

非法坐标点需要进行丢弃。如AA10;  A1A;  $%$;  YAD; 等。

下面是一个简单的例子 如:

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)

输入描述:

一行字符串

输出描述:

最终坐标,以,分隔

示例1:

输入:

A10;S20;W10;D30;X;A1A;B10A11;;A10;

输出:

10,-10

代码: 

import java.util.Scanner;public class Main {public static void main ( String[] args ) {Scanner in = new Scanner( System.in );while ( in.hasNextLine() ) {String s1 = in.nextLine();String s[] = s1.split(";");int x = 0;int y = 0;for( int i = 0 ; i < s.length ; i++ ) {if ( (s[i].length() == 3 && ( (s[i].charAt(0) == 'A' || s[i].charAt(0) == 'S' || s[i].charAt(0) == 'W' || s[i].charAt(0) == 'D') && ( s[i].charAt(1) >= '0' && s[i].charAt(1) <= '9') && ( s[i].charAt(2) >= '0' && s[i].charAt(2) <= '9' ) )) || ( s[i].length() == 2 && ( (s[i].charAt(0) == 'A' || s[i].charAt(0) == 'S' || s[i].charAt(0) == 'W' || s[i].charAt(0) == 'D') && ( s[i].charAt(1) >= '0' && s[i].charAt(1) <= '9') ) ) ) {if ( s[i].charAt(0) == 'A' ) {x -= Integer.valueOf( s[i].substring(1) );}if ( s[i].charAt(0) == 'D' ) {x += Integer.valueOf( s[i].substring(1) );}if ( s[i].charAt(0) == 'S' ) {y -= Integer.valueOf( s[i].substring(1) );}if ( s[i].charAt(0) == 'W' ) {y += Integer.valueOf( s[i].substring(1) );}}}System.out.println( x +","+ y );}} }

转载于:https://www.cnblogs.com/cg-bestwishes/p/10681161.html

总结

以上是生活随笔为你收集整理的牛客网——华为机试(题17:坐标移动)(Java)的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。