看板 SCU-BM-88C 關於我們 聯絡資訊
#include<stdio.h> #include<conio.h> void main(void) { clrscr(); int i,j; for(i=1;i<=9;i++){ for(j=1;j<=9;j++){ printf("%d x %d = %d \t",i,j,i*j); } printf("\n"); } } 這是我的解答,大家討論一下有沒有別的解答,翔大有沒有更好的解答!