1 #include <stdio.h> 2 #include <stdlib.h> 3 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 5 6 int main(int argc, char *argv[]) { 7 int i,j; 8 for(i=1;i<=9;i++) 9 { 10 for(j=0;j<=9;j++) 11 { 12 printf("%dx%d=%d\t",i,j,i*j); 13 } 14 printf("\n"); 15 } 16 return 0; 17 }
相关文章
- 01-26python基础——15.十大排序算法&九九乘法表
- 01-26九九乘法表.py
- 01-26C 九九乘法表 SDUT
- 01-26小小C程序(九九乘法表)
- 01-26九九乘法表python3写入文件中
- 01-26哇是九九乘法表耶
- 01-26九九乘法表
- 01-26python_九九乘法表
- 01-26plsql实现九九乘法表
- 01-26shell双重循环、IFS分隔符、趣味图形、九九乘法表