用C語言實現九九乘法表

#include <stdio.h> #include <stdlib.h> int main(){ int a=1,b=1; for (a;a<=9;a++){ for (b;b<=a;b++) printf("%d*%d=%2d ",b,a,a*b); printf("\n"); b=1; } }
相關文章
相關標籤/搜索