标签:style blog http io color os sp for 数据
小时候学过的九九乘法表也许将会扎根于我们一生的记忆,现在让我们重温那些温暖的记忆,请编程输出九九乘法表.
现在要求你输出它的格式与平常的 不同啊! 是那种反过来的三角形啦,具体如下图:
每两个式子之前用一个空格 隔开。。。
3
2
1
5
1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9
2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18
1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9
1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9
2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18
3*3=9 3*4=12 3*5=15 3*6=18 3*7=21 3*8=24 3*9=27
4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36
5*5=25 5*6=30 5*7=35 5*8=40 5*9=45
1 #include <stdio.h> 2 #include <math.h> 3 4 int main(){ 5 int T; 6 int n; 7 int i; 8 int j; 9 10 scanf("%d",&T); 11 12 while(T--){ 13 scanf("%d",&n); 14 15 for(i=1;i<=n;i++){ 16 for(j=i;j<=9;j++){ 17 if(j!=i) 18 printf(" "); 19 20 printf("%d*%d=%d",i,j,i*j); 21 } 22 printf("\n"); 23 } 24 25 if(T!=0) 26 printf("\n"); 27 } 28 return 0; 29 }
标签:style blog http io color os sp for 数据
原文地址:http://www.cnblogs.com/zqxLonely/p/4098641.html