Main.cc:25:9: error: redefinition of 'int y [32]' int y[32];//数组用来倒序 ^ Main.cc:3:5: note: 'int y [32]' previously declared here int y[32];//数组用来倒序 ^ Main.cc:26:5: error: redefinition of 'int cut' int cut = 0;//累加器 ^ Main.cc:4:5: note: 'int cut' previously defined here int cut = 0;//累加器 ^ Main.cc: In function 'int main()': Main.cc:27:5: error: redefinition of 'int main()' int main() { ^ Main.cc:5:5: note: 'int main()' previously defined here int main() { ^