摘要:
This article is meant as an extension to Angie Jones’ “IntelliJ – Error:java: release version 5 not supported”. Angie在她的文章中建议IntelliJ IDEA解决方案,其中显示错误消 阅读全文
摘要:
杨辉三角形 public class TestYang1 { public static void main(String[] args) { int len = 10;//定义数组长度,也就是杨辉三角的长度 int[][] arr = new int[len][len];//定义6行6列的二维数组 阅读全文