C语言 易错题整理

 

C语言 易错题整理

C语言 易错题整理

C语言 易错题整理

 

C语言 易错题整理

 

C语言 易错题整理

 

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

int main()
{
    //方阵型
    int i,j;
    for(i=1;i<10;i++){
        for(j=1;j<10;j++)
        {
            printf("%3d=%d*%d",j*i,i,j);
        }
        printf("\n");
    }
    
    
    return 0;
}

 

 

 

相关文章:

  • 2021-09-16
  • 2021-05-30
  • 2021-06-02
  • 2022-12-23
  • 2021-07-15
  • 2021-11-12
  • 2021-11-04
  • 2022-01-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-25
  • 2022-01-07
  • 2021-09-25
  • 2022-12-23
  • 2021-12-18
相关资源
相似解决方案