本题要求编写程序,输出指定的由“A”组成的菱形图案。
本题无输入
按照下列格式输出由“A”组成的菱形图案。
A A A A
# include <stdio.h> # include <stdlib.h> int main(){ printf(" A\nA A\n A"); return 0; }