Navigation

    GitHub中文社区
    • GitHub排行榜

    论坛

    • Login
    • Categories
    • Recent
    • Tags
    • Popular

    打印九九乘法表。

    综合交流
    1
    1
    602
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 150930
      150930 last edited by

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

      return 0;}

      1 Reply Last reply Reply Quote 0
      • First post
        Last post