開發平台(Platform): (Ex: Win10, Linux, ...)
w10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
devc++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
用for數字迴圈畫三角型
可是超過一定的數字就不會寫了
行數超過10就用星星取代
卡很久都跑不出來 初學者
餵入的資料(Input):
#include<stdio.h>
int main()
{
int i,j,k;
printf("輸入行數 = ");
scanf("%d",&k);
for(i=1;i<=k;i++){
for(j=1;j<=i;j++)
{
printf("%d",i);
}
printf("\n");
}
}
預期的正確結果(Expected Output):
1
22
333
4444
55555
666666
7777777
88888888
999999999
**********
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
補充說明(Supplement):