c语言打印99乘法表

日期:2022-04-11 12:30:48 人气:1

c语言打印99乘法表

#include<stdio.h>
main(){
int i,j;
for(i=1;i<=9;i++){
for(j=1;j<=9;j++){
if(j>i)break;
else printf("%d×%d=%5d",i,j,i*j);
}
printf("\n"
    A+
热门评论