看板 C_and_CPP 關於我們 聯絡資訊
大家玩得很開心,我也來參與。 交作業應該很夠了。 #include <stdio.h> int main() { /* change SIZE value here input height should be less or equal than SIZE / 2, */ const int SIZE = 21; char space[] = " "; char star[] = "********************"; int height, countStar; scanf("%d", &height); for(countStar = 1; countStar <= height; ++countStar) { printf("%s%s\n", space + (SIZE - (height - countStar) - 1), star + (SIZE - (countStar * 2 - 1) - 1)); } return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 114.25.240.138
tsaiminghan:數字太大就爆了。 11/07 16:57
wfgh:為啥每次出現這種初學題目就爆多人回的 11/07 17:24
loveme00835:因為玩法很多 XD 11/07 17:26
bugmens:因為難度低大家都有能力回答,只要難一點就沒人理了 11/07 19:31
tomap41017:推樓上XDD 11/08 00:36
peefly:數字大就多append幾顆星星上去就好啦XD 11/08 11:19