C语言经典题九九乘法表
坚强
If you live to be a hundred, I want to live to be a hundred minus one day, so I never have to live without you.
- Winnie the Pooh
坚强
#include<stdio.h>
main()
{
int x,y,z;
for(x=1;x<=9;x++)
{
for(y=1;y<=x;y++)
{
z=x*y;
printf("%d*%d=%d ",y,x,z);
}
printf(" ");
}
}
核心代码
int x,y,z;
for(x=1;x<=9;x++)
{
for(y=1;y<=x;y++)
{
z=x*y;
printf("%d*%d=%d ",y,x,z);
}
printf(" ");
}
for循环的作用
给x,y循环赋值,从开始,当x=1时,y=1时,x*y的值赋给z ,以此类推。
第二个for循环中y<=x;的作用
使x的值在第二个for循环中大于等于y的值。
printf(" ");的作用
将此语句写在写在第二个for循环的后面,目的是换行
1*1=1 换行
1*2=2 2*2=4换行
动动小手,点点关注鸭