include<stdio.h>int main(){ int i = 1; int j = 9; for (j = 9; j >= 1; j--) { for (i = 1; i <= j;i++) { printf("%d*%d=%d ",j,i,i*j); } ...
確定! 回上一頁