C語言之用for語句實現*符倒三角輸出

源代碼 #include "stdafx.h" void main() { int i,j; int munber; printf("請輸入上層數:"); scanf("%d",&munber); for(i=1;i<=munber;i++) { for(j=1;j<=i-1;j++) printf(" "); for(j=1;j<=2*(munber-i)+1;j++
相關文章
相關標籤/搜索