2019年7月2日

摘要: package day04;import java.util.*;public class Demo12 { static Scanner sr =new Scanner(System.in); public static void main(String[] args) { System.out.println("你像要几行数字?"); int num =... 阅读全文
posted @ 2019-07-02 16:21 不胖 阅读(294) 评论(0) 推荐(0)
 
摘要: import java.util.*;public class Demo11 { static Scanner sr = new Scanner(System.in); public static void main(String[] args) { int num = 0; do{ System.out.println("... 阅读全文
posted @ 2019-07-02 15:59 不胖 阅读(185) 评论(0) 推荐(0)
 
摘要: public class Demo8 { public static void main(String[] args){ for (int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ System.out.print(i+"*"+j+"="+i*j+"\t"); } 阅读全文
posted @ 2019-07-02 11:56 不胖 阅读(147) 评论(0) 推荐(0)
 
摘要: 1.实心菱形 2.空心菱形 阅读全文
posted @ 2019-07-02 11:54 不胖 阅读(133) 评论(0) 推荐(0)