用java打印出菱形图案
问题描述:
用java打印出菱形图案
*
***
***
*
答
public class Diamond {
public static void main(String[] args) {
final int size = 4;
for (int i = 1; i