以下是代码!
package com.dzqc.Day0118;
/**
* Created with IntelliJ IDEA.
*
* @Author: zhangxiaokun
* @Date: 2022/01/18/14:56
* @Description: 小明在爷爷的私人收藏馆里找到一台老式电脑。居然没有图形界面,只能用控制台编程。 经过小明的一阵摸索,神奇地设计出了控制台上的贪食蛇游戏。
* 如上,是游戏时画面截图。
* 其中,HH 表示蛇头,TT表示蛇尾。# 表示蛇的身体,@ 表示身体交叉重叠的地方。 你能说出现在的贪吃蛇长度是多少吗?
* 其实,只要数出 # 的数目算 11,数出 @的数目算的数目算2,再加上头尾各算,再加上头尾各算1$ 就计算好了。
* 人工数一下?太累眼睛了,聪明的你为什么不让计算机帮忙呢?
* 本题的要求就是: 请输出上图中贪食蛇的长度是多少?
*/
public class Zuoye {
public static void main(String[] args) {
String strings =
"| H###### #### |\n" +
"| # # # |\n" +
"| # # # |\n" +
"| # #### # # |\n" +
"| # # # # # |\n" +
"| ######@### # # |\n" +
"| # #### # # |\n" +
"| # # # # # |\n" +
"| ####@#######@### # # |\n" +
"| # # # # # |\n" +
"| T ##### # # # ## |\n" +
"| # # ### ### ## |\n" +
"| ################ # # #### |\n" +
"| # # # # |\n" +
"| ############## #######@########## |\n" +
"| # ### |\n" +
"| ########################### |";
int nums = 0;
int i = strings.length() - strings.replaceAll("#", "").length();
System.out.println("#的数量为" + i);
nums = i * 11;
System.out.println("#的长度为" + nums);
int i1 = strings.length() - strings.replaceAll("@", "").length();
System.out.println("@的数量为" + i1);
int i2 = i1 * 2;
System.out.println("@的长度为" + i2);
nums = nums + i2 + 2;
System.out.println(nums);
}
}