一:问题描述

还未进行任何输入,就直接输出 Process exited after 4.03 seconds with return value 3221225725

二:问题解决

问题代码:

#include <iostream>
using namespace std;

int main(){
   
   int m[1000][1000];
   
   int N;
   cin >> N;
    
}

解决问题代码

#include <iostream>
using namespace std;
int m[1000][1000];
int main(){
     
   int N;
   cin >> N;
    
}

总结:将二维数组的定义改为全局变量即可

更多推荐

DEV-C上的报错 Process exited after 4.03 seconds with return value 3221225725