摘要:
#include <iostream> #include <cstring> #include <algorithm> #include <cstdio> using namespace std; int a[10]; int main() { for (int i = 0; i <= 2; i + 阅读全文
摘要:
Redefinition of 'y1' as different kind of symbol ##原因 ###解释:此次定义的y1变量与函数库中定义的y1重名了,所以编译错误,重定义了y1变量。 解决方法:将y1变量改个名字即可。 如果你想深入了解:请参照redefinition of ‘y1’ 阅读全文