摘要:
public class WeekendDemo01 { /** 打印菱形 * * * *** * ***** * *** * * */ public static void main(String[] args) { int bianchang;//记录边长 int count02;//控制打印* 阅读全文
posted @ 2022-09-25 19:43
小彤在努力
阅读(38)
评论(0)
推荐(0)
摘要:
/** * *** ***** 打印如图金字塔 *=i*2-1 (竖)空格数=列数-1 */ public class Circulate{ public static void main(String[] args){ int count = 3; for (int i = 1; i <= cou 阅读全文
posted @ 2022-09-25 19:42
小彤在努力
阅读(74)
评论(0)
推荐(0)