import java.util.ArrayList; import java.util.Scanner; public class Main{ public static ArrayList<String> list=new ArrayList<String>(); public static void main(String[] args) { Scanner sc=new Scanner(System.in); int t=sc.nextInt(); while (t-->0) { sc.nextLine(); int n=sc.nextInt(); char arr[][]=new char[n][n]; int x=0,y=0; for (int i = 0; i < n; i++) {//输入 String str=sc.next(); for (int j = 0; j <str.length(); j++) { arr[i][j]=str.charAt(j); if (arr[i][j]=='S') { x=i; y=j; } } } int m=sc.nextInt();//指令条数 for (int i = 0; i < m; i++) { //直接判断指令,且输出答案 String ZhiLin=sc.next(); name(arr, ZhiLin, x, y); } } //输出结果 for (String item : list) { System.out.println(item); } } //判断指令,返回结果 public static void name(char arr[][],String Zhi,int x,int y) { for (int i = 0; i <Zhi.length(); i++) { char c=Zhi.charAt(i); if (c=='R') { y++; }if (c=='U') { x--; }if (c=='L') { y--; }if (c=='D') { x++; } //判断位置 if (x<0 || y<0 || x>=arr.length || y>=arr[0].length) { list.add("I am out!"); return ;//退出 }else if(arr[x][y]=='#'){ list.add("I am dizzy!"); return ; }else if (arr[x][y]=='T') { list.add("I get there!"); return ; } } //未能到达终点 list.add("I have no idea!"); //return ; 不能加return,加了不能通过。 } }
-------------------------
这个return可有可无,并且在我的电脑上测试样例可以通过。
但提交后无法通过。
0.0分
1 人评分
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:563 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1216 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:691 |
C语言程序设计教程(第三版)课后习题6.6 (C++代码)浏览:649 |
三角形 (C语言代码)浏览:965 |
关于C语言变量位置的问题浏览:294 |
1012题解浏览:938 |
Tom数 (C语言代码)浏览:581 |
大神老白 (C语言代码)浏览:638 |
输出九九乘法表 (C语言代码)浏览:1172 |