码迷,mamicode.com
首页 > 其他好文 > 详细

n*n(乘法表)

时间:2020-03-28 13:14:27      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:putc   main   int   乘法   lib   system   char   ret   bsp   

#include <stdio.h>
#include <stdlib.h>


int main()
{
 int n = 5;
 int i, j;

 for (i = 1; i <= n; i++){
  for (j = 1; j <= i; j++){
   printf("  %d * %d = %d",i, j, i * j);
  }putchar(‘\n‘);
 }
 
 
 system("pause");
 return 0;
}

n*n(乘法表)

标签:putc   main   int   乘法   lib   system   char   ret   bsp   

原文地址:https://www.cnblogs.com/Leafbud/p/12586754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!