求大神指点,第11行如何修改?

public class NestTry {
public static void main(String[] args) {
int k;
int i;
try {
System.out.println("这是第一层try开始!");
try {
System.out.println("这是第二层try!");
int b[]=null;
k=b[0];
System.out.prinltn("这是第二层try结束!");
}
catch(Exception ex) {
System.out.println(ex);
}
finally {
System.out.println("这是第一层finally!");
}
i=10/0;
System.out.println("这是第一层try结束!");
}
catch(Exception ex) {
System.out.println(ex);
}
finally {
System.out.println("这是第二层finally!");
}
}
}

Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method prinltn(String) is undefined for the type PrintStream

at NestTry.main(NestTry.java:11)

只是单词拼错了,详见如图。还望采纳。
图片说明

System.out.prinltn("这是第二层try结束!");

第11行中println给写错了.

## >


println写错了吧,然后数组也不对

这种是最基本的拼写错误,不论你是不是新手,编译器已经给指出来错误了,你先得自己去看一下
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method prinltn(String) is undefined for the type PrintStream
at NestTry.main(NestTry.java:11)
这个,因为它说的就是prinltn没定义,英语不好可以百度翻译,如果汉语意思有了,你还不懂再问也不迟,否则的话,那你写代码的过程中要来问的就太多了