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

九九乘法表

时间:2020-02-11 11:48:44      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:std   else   乘法   bsp   nbsp   printf   print   include   int   

#include <stdio.h>
int main() 
{
   int i,j;
   for(i=1;i<=9;i++)
{
       for(j=1;j<=9;j++)
{
           if(j<i)
               printf("       ");
           else
               printf("%d*%d=%-3d",i,j,i*j);
       }
       printf("\n");  
   }
}

九九乘法表

标签:std   else   乘法   bsp   nbsp   printf   print   include   int   

原文地址:https://www.cnblogs.com/bobotongxue/p/12294178.html

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