Chinaunix首页 | 论坛 | 博客

分类: IT业界

2014-12-02 16:28:25

第三种方法:
#include

int main()
{
 int a,b;
 a=1;
 b=9;
 while(1)
 {
  while(1)
  {
   printf("%d*%d=%d\t",a,b,a*b);
   a++;
   if(a>b)
   {
    printf("\n");
    break;
   }
   
  }
  a=1;
     b--;
  if(b<1)
   break;
 }
         return 0;
}

如图:





第四种方法:

#include

int main()
{
 int a,b;
 a=1;
 b=1;
 while(1)
 {
  while(1)
  {
   printf("%d*%d=%d\t",a,b,a*b);
   b++;
   if(b>9)
   {
    printf("\n");
    break;
   }
   
  }
  a++;
     b=a;
  if(b>9)
   break;
 }
         return 0;
}
如图:

阅读(2106) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~