/*編寫一個程序,輸出以下圖案: * *** ***** ******* ***** *** * */

/*編寫一個程序,輸出以下圖案:    *   ***  ***** *******  *****   ***    *  */ #include <stdio.h> int main(int argc,char *argv[]) { int x; int y; int z; for(x=1;x<=4;x++) { for(y=0;y<4-x;y++) { printf(" "); } for(z
相關文章
相關標籤/搜索