九九乘法表
/*******************************************************************
*
* function name: func
* author : [email protected]
* date : 2024/04/22
* function : 九九乘法表
* note : None
*
* CopyRight (c) 2023-2024 [email protected] All Right Reseverd
*
* *****************************************************************/
#include <stdio.h>
void func(void)
{
for(int row = 1; row < 10; ++row)//行
{
for(int colu = 1;colu <= row; ++colu)//列
{
printf("%d*%d=%d",colu,row,colu * row);
printf("%c",32);//空格
}
printf("\n");//换行
}
}
int main()
{
func();
return 0;
}
标签:function,九九乘法,int,18312615416,func,row
From: https://www.cnblogs.com/lwj294/p/18151561