求求教
#include <stdio.h> int main(){ int i,k,d; for(i=1;i<=9;i++) { for(k=1;k<=9;k++) { d=i*k; printf("%d*%d=%d ",i,k,d); } printf("\n"); } return 0; }