code 在这#include<stdio.h>
int main(){ int i,j; int a[10][10]; for(i=1;i<10;i++) for(j=1;j<=i;j++) { a[i][j]=i*j;
printf("%5d",a[i][j]); if(j==i) printf("\n"); } getch(); return 0;}
在VC++中的getch()少个头文件,#include<conio.h>而WIN-TC没有那么严格,一般的都文件都不需要加
谢版主