看板 C_and_CPP 關於我們 聯絡資訊
#include <stdio.h> #include <stdlib.h> int main() { int i,j; for(i=2;i<=6;i+=2) { for(j=1;j<=(6-i)/2;j++) printf(" "); for(j=1;j<=i;j++) printf("*"); printf("\n"); } system("pause"); return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 27.246.214.227 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1450167110.A.971.html
djljing: 謝謝 12/15 16:39
chchwy: 就這樣給解答 你真的認為對他有幫助嗎? 12/15 17:11
djljing: 我還在研究中,因為老師要求的寫法沒這麼高級 12/15 18:27