Description 输出由数字组成的菱形图案 Input 输入一个正整数n。 Output 输出由数字组成的菱形图案。其中,菱形图案当中一层的数字正好是输入的数字n。 Sample Input 3 Sample Output 1 222 33333 222 1 #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int m...