推 LPH66: 有努力有推 12/15 20:47
※ 引述《magic704226 (梅姬?沒雞?傻傻分不清楚)》之銘言:
: #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;
: }
自己寫出來了,只能說magic704266是高手
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
int i,j,k;
for(i=1;i<=3;i++)
{
for(k=3;k>=i;k--)
printf(" ");
for(j=1;j<=i*2;j=j+1)
printf("*");
printf("\n");
}
system("pause");
return 0;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 120.109.151.67
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1450180649.A.B17.html