关于VC++编程出现错误,求高手解决!!
编程过程中已定义#defineN且有intN=atoi(InputParNum);语句另外又定义inta[N];floatb[N];longc[N];doubled[N]...
编程过程中已定义#define N
且有int N=atoi(InputParNum);语句
另外又定义int a[N];
float b[N];
long c[N];
double d[N];
char e[N];
为什么会出现错误:
F:\UCDCS007\FileNew\App.cpp(78) : error C2513: 'int' : no variable declared before '='
F:\UCDCS007\FileNew\App.cpp(80) : error C2133: 'a' : unknown size
F:\UCDCS007\FileNew\App.cpp(81) : error C2133: 'b' : unknown size
F:\UCDCS007\FileNew\App.cpp(82) : error C2133: 'c' : unknown size
F:\UCDCS007\FileNew\App.cpp(83) : error C2133: 'd' : unknown size
F:\UCDCS007\FileNew\App.cpp(84) : error C2133: 'e' : unknown size
若不加#define N 定义,则有错误:
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'a' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'b' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'c' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'd' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'e' : unknown size
error C2057: expected constant expression
各位高手,怎么改啊?? 展开
且有int N=atoi(InputParNum);语句
另外又定义int a[N];
float b[N];
long c[N];
double d[N];
char e[N];
为什么会出现错误:
F:\UCDCS007\FileNew\App.cpp(78) : error C2513: 'int' : no variable declared before '='
F:\UCDCS007\FileNew\App.cpp(80) : error C2133: 'a' : unknown size
F:\UCDCS007\FileNew\App.cpp(81) : error C2133: 'b' : unknown size
F:\UCDCS007\FileNew\App.cpp(82) : error C2133: 'c' : unknown size
F:\UCDCS007\FileNew\App.cpp(83) : error C2133: 'd' : unknown size
F:\UCDCS007\FileNew\App.cpp(84) : error C2133: 'e' : unknown size
若不加#define N 定义,则有错误:
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'a' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'b' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'c' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'd' : unknown size
error C2057: expected constant expression
error C2466: cannot allocate an array of constant size 0
error C2133: 'e' : unknown size
error C2057: expected constant expression
各位高手,怎么改啊?? 展开
3个回答
展开全部
#define N ??
#define N 123
define之后N为常数 int N=atoi(InputParNum);不能给N赋值等任何修改操作
#define N 123
define之后N为常数 int N=atoi(InputParNum);不能给N赋值等任何修改操作
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先你#define N, 所以这个时候N代表空白。然后你int N=atoi(InputParNum),VC在编译的时候会用空白代替N,所以编译的时候就变成了int =atoi(InputParNum)。注意,int和=之间什么也没有,这显然会出现编译错误。
如果没有#define N,则N是个int型的变量。那么
float b[N];
long c[N];
double d[N];
char e[N];
都是错的,因为这种预定义的数组是不能用变量当作数组大小的。这也会出编译错误。
如果想在运行时决定数组的大小,请用new操作符分配数组,或者malloc之类的堆分配函数。
如果没有#define N,则N是个int型的变量。那么
float b[N];
long c[N];
double d[N];
char e[N];
都是错的,因为这种预定义的数组是不能用变量当作数组大小的。这也会出编译错误。
如果想在运行时决定数组的大小,请用new操作符分配数组,或者malloc之类的堆分配函数。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询