gpt4 book ai didi

c++ - 在 for 循环和变量值中,此代码出现多个错误;

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:43:56 25 4
gpt4 key购买 nike

使用变量值作为数组的大小,但它不会让我这样做。

int main () {
double a,b,N,increment,value;
value=0;
cout<< "enter values for (a,b,N)";
cin>>a;
cin>>b;
cin>>N;
increment= (b-a)/(N-1);
for (int i =0;i<=b;i+=increment){
value = value+i;
}
double sivalues[value];
for (int x=a;i<=b;i+=increment){
sivalues[a]=si(x);
cout<<"si("<<x<<") = "<< sivalues[a];
}

最佳答案

创建数组时放在[]内的项必须是常量。但是,当您在堆上创建数组时,这并不适用。

int mySize = 50;
int myArray[mySize]; // error: mySize must be const
int* myHeapArray = new int[mySize]; // all good! (just don't forget to free the memory)

关于c++ - 在 for 循环和变量值中,此代码出现多个错误;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43164107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com