啊哈添柴挑戰Java1222. 輸出菱形

啊哈添柴——挑戰

1222. 輸出菱形

在這裏插入圖片描述

/**
 * @author yinglongwu
 */
//1222. 輸出菱形
public class Main {

	public static void main(String[] args) {
		System.out.println("  *  ");
		System.out.println(" * * ");
		System.out.println("*   *");
		System.out.println(" * * ");
		System.out.println("  *  ");
	}

}

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章