-1
我是新來的編碼。當我在codecheff中提交我的代碼時,它給出了「運行時錯誤(SIGSEGV)」。我不知道有什麼問題請幫忙。提前致謝。 我是新來的編碼。當我在codecheff中提交我的代碼時,它給出了「運行時錯誤(SIGSEGV)」。我不知道有什麼問題請幫忙。提前致謝。運行時錯誤我的代碼sigsegv
#include <iostream>
using namespace std;
int main()
{
int n,m,k,i,l,j,a[100000][100000],r,c,s,d;
cin >> n >> m >> k;
cout<<endl;
for(i=1;i<=n;i++)
{
for(j=1;j<=m;j++)
{
cin>>a[i][j];
cout<<" ";
}
cout<<endl;
}
for(l=1;l<=k;l++)
{
cin >> r >> c >> s >> d;
for(i=r;i<=r+s-1;i++)
{
for(j=c;j<=c+s-1;j++)
{
a[i][j]=a[i][j]+d;
}
}
}
for(i=1;i<=n;i++)
{
for(j=1;j<=m;j++)
{
cout<<a[i][j];
cout<<" ";
}
cout<<endl;
}
return 0;
}