摘要:
#杨辉三角 打印10行杨辉三角 1.打印出直角杨辉三角 public class Yanghui { public static void main(String[] args) { int[][] a = new int[10][10]; for(int i=0;i<10;i++){ for(in 阅读全文
posted @ 2021-04-21 21:43
久先生
阅读(62)
评论(0)
推荐(1)
摘要:
#打印乘法表 public class Multip { public static void main(String[] args) { for (int i=1;i<10;i++){ for(int j=1;j<=i;j++){ System.out.print(j + "*" + i + "= 阅读全文
posted @ 2021-04-21 21:08
久先生
阅读(56)
评论(0)
推荐(0)
浙公网安备 33010602011771号