标签:for orm ref cstring 内存 current 查看 stat pen
输入一个整数矩阵,计算位于矩阵边缘的元素之和。所谓矩阵边缘的元素,就是第一行和最后一行的元素以及第一列和最后一列的元素。
3 3 3 4 1 3 7 1 2 0 1
15
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 using namespace std; 6 int a[101][101]; 7 int main() 8 { 9 int m,n,tot=0; 10 cin>>m>>n; 11 for(int i=1;i<=m;i++) 12 { 13 for(int j=1;j<=n;j++) 14 { 15 cin>>a[i][j]; 16 } 17 } 18 for(int i=1;i<=m;i++) 19 { 20 for(int j=1;j<=n;j++) 21 { 22 if(i==1||j==1||i==m||j==n) 23 tot+=a[i][j]; 24 } 25 } 26 cout<<tot; 27 } 28 29 03: 计算矩阵边缘元素之和最近的提交
标签:for orm ref cstring 内存 current 查看 stat pen
原文地址:http://www.cnblogs.com/lyqlyq/p/6661041.html