#include using namespace std; int a[1000000];//全局,静态 int main() { //int a[1000000];//局部,动态 int b[5]={2,4,5}; int c[]={1,2,3,4}; cout<