TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/************************************************************************/
- /*
- 46. 已知M1是3×5的矩阵, M2是5×2的矩阵, 编程序求出M1与M2之积。
-
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
-
-
-
- void main()
- {
- int M1[3][5]={0};
- int M2[5][2]={0};
- int M3[3][2]={0};
- for (int i=0;i<3;i++)
- {
- for (int j=0;j<5;j++)
- {
- M1[j]=rand()%2;
- printf("%5d",M1[j]);
- }
- printf("\n");
- }
- printf("\n");
- printf("\n");
- for (int i=0;i<5;i++)
- {
- for (int j=0;j<2;j++)
- {
- M2[j]=rand() %2;
- printf("%5d",M2[j]);
- }
- printf("\n");
- }
- printf("\n");
- printf("\n");
- for (int i=0;i<3;i++)
- {
- for(int j=0;j<2;j++)
- { int sum=0;
- for (int k=0;k<5;k++)
- {
- sum+=M1[k]*M2[k][j];
- }
- M3[j]=sum;
- }
- }
- for (int i=0;i<3;i++)
- {
- for (int j=0;j<2;j++)
- {
- printf("%5d",M3[j]);
- }
- printf("\n");
- }
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|