小九九

来源:互联网 发布:韦恩图制作软件 编辑:程序博客网 时间:2024/04/19 14:14

制作人:宋政道

#include<stdio.h>
#include<conio.h>
void main()
{  int a,b;
 for(a=1;a<=9;a++)
 {
  for(b=1;b<=a;b++)
  printf("%d*%d=%-4d",a,b,a*b);
  printf("\n");
    }
}

原创粉丝点击