摘要:
2.求两个M × N的矩阵之和、之差、乘积。 #include<stdio.h>main(){ int a[2][2]={{1,2},{3,4}},b[2][2]={{5,6},{7,8}},i,j,c[2][2]; for(i=0;i<2;i++) for(j=0;j<2;j++) {c[i][j 阅读全文
摘要:
#include <stdio.h>main(){ int a,i,t; scanf("%d",&i); while(i--) { scanf("%d",&a); {for(t=0;t<=a;t++) if(t%2!=0) printf("%d ",t);} printf("\n"); { for( 阅读全文