解题思路:
1.输入就不说了,把它放到char的二维数组里面

2.循环遍历,如果不是'*',就把它赋值为'0'

3.循环遍历,如果他是'*',把它的上下左右,左上左下,右上右下累加1即可

4.最后输出
注意事项:

1.累加1的时候要判断一下累加的位置是不是'*',要避免把雷给加了
2.注意输出的格式 System.out.println("Field #"+count+":"); 还有不同案例之间还有次换行....
参考代码:

import java.util.Scanner;

public class Main {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int count = 1;
		while (scanner.hasNext()) {
			int n = scanner.nextInt();
			int m = scanner.nextInt();
			if (n == 0 && m == 0) {
				break;
			}
			char[][] nums = new char[n][m];
			for (int i = 0; i < nums.length; i++) {
				char[] input = scanner.next().toCharArray();
				for (int j = 0; j < input.length; j++) {
					if (input[j] != '*') {
						nums[i][j] = '0';
					} else {
						nums[i][j] = '*';
					}
				}
			}

			for (int i = 0; i < nums.length; i++) {
				for (int j = 0; j < nums[0].length; j++) {
					if (nums[i][j] == '*') {
						if (i - 1 >= 0) {// 上
							if (nums[i - 1][j] != '*') {
								nums[i - 1][j] += 1;
							}

							if (j - 1 >= 0) {// 左上
								if (nums[i - 1][j - 1] != '*') {
									nums[i - 1][j - 1] += 1;
								}

							}

							if (j + 1 < nums[0].length) {// 右上
								if (nums[i - 1][j + 1] != '*') {
									nums[i - 1][j + 1] += 1;
								}

							}
						}
						if (i + 1 < nums.length) {// 下
							if (nums[i + 1][j] != '*') {
								nums[i + 1][j] += 1;
							}

							if (j - 1 >= 0) {// 左下
								if (nums[i + 1][j - 1] != '*') {
									nums[i + 1][j - 1] += 1;
								}

							}

							if (j + 1 < nums[0].length) {// 右下
								if (nums[i + 1][j + 1] != '*') {
									nums[i + 1][j + 1] += 1;
								}
							}
						}

						if (j - 1 >= 0) {// 左
							if (nums[i][j - 1] != '*') {
								nums[i][j - 1] += 1;
							}

						}
						if (j + 1 < nums[0].length) {// 右
							if (nums[i][j + 1] != '*') {
								nums[i][j + 1] += 1;
							}

						}

					}
				}
			}
			
			//遍历输出
			System.out.println("Field #"+count+":");
			for (int i = 0; i < nums.length; i++) {
				for (int j = 0; j < nums[0].length; j++) {
					System.out.print(nums[i][j]);
				}
				System.out.println();
			}
			System.out.println();
			count++;
		}

	}

}


点赞(1)
 

0.0分

5 人评分

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 1 条评论

4年前 回复TA
。。