编写程序求n阶矩阵的上三角元素的和,其中求上三角元素的和要求用函数实现
编写程序求n阶矩阵的上三角元素的和,其中求上三角元素的和要求用函数实现#include<stdio.h>
int n,i,j,s=0,a;
int add_num()
{
for(i=0;i<n;i++)
{
for(j=i;j<n;j++)
{
s+=a;
}
}
return s;
}
int main()
{
scanf("%d",&n);
for(i=0;i<n;i++)
for(j=0;j<n;j++)
{
scanf("%d",&a);
}
s= add_num();
printf("%d\n",s);
return 0;
} #include <stdio.h>
int sum(int n, int arr){
int res = 0;
for(size_t i = 0; i < n; i++)
for(size_t j = i; j < n; j++)
res += arr;
return res;
}
int main()
{
int arr = {
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}};
printf("%d", sum(3, arr));
return 0;
}
页:
[1]