首页 > 其他 > 详细

九九乘法表

时间:2019-12-19 13:38:15      阅读:70      评论:0      收藏:0      [点我收藏+]
 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 }

九九乘法表

原文:https://www.cnblogs.com/MegaByte/p/12067097.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!