摘要: public class Dd { public static void main(String[] args) { int n,m; for(n=1;n<10;n++){ for(m=1;m<=n;m++) { System.out.print(m+"*"+n+"="+m*n+"\t"); } S 阅读全文
posted @ 2021-01-18 18:09 叶子大叔 阅读(54) 评论(0) 推荐(0)
摘要: package LL;public class Student { public static void main(String[] args) { int[]i={2,4,6,8,9}; int b; for(int l=0;l<i.length;l++){ System.out.println( 阅读全文
posted @ 2021-01-18 16:18 叶子大叔 阅读(72) 评论(0) 推荐(0)
摘要: public class ooo { public static void main(String[]args){ int i[]={5,9,6,4}; for(int c=0;c<i.length;c++){ System.out.println(i[c]); } System.out.print 阅读全文
posted @ 2020-12-21 17:57 叶子大叔 阅读(52) 评论(0) 推荐(0)
摘要: public static void main(String[]args){ // int a =8; // while(a<10){ // System.out.println("孤独烈酒"); // a++; for (int a =6;a<10;a++){ System.out.println 阅读全文
posted @ 2020-12-09 17:36 叶子大叔 阅读(35) 评论(0) 推荐(0)