下面的程式可以輸出一個n層的倒三角形:#include <stdio.h> int main() {int i,j,n; scanf("%d",&n); //輸入n的值for(i=0;i<n;i++) //共n行{ for(j=0 ...
確定! 回上一頁