2次元配列の各行の合計を求める際の効率 (big O表記) を見つける方法
void findTotal(int arr[3][],int rows,int cols)
{
int *total=new int[rows];
int sum;
for(int r=0;r<rows;r++)
{
sum=0;
for(int c=0;c<cols;c++)
sum=sum+arr[r][c];
total[r]=sum;
}
for(int k=0;k<rows;k++)
cout<<total[k]<<endl;
delete []total;
}