gpt4 book ai didi

c++ - 数组升序嵌套循环问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:29:08 24 4
gpt4 key购买 nike

我正在使用嵌套的 for 循环按升序重新排列数组。

问题出在第二个(嵌套的)for 循环中的 ( y = x + 1 )。我收到以下错误:“x”的名称查找已针对 ISO“for”作用域 [-fpermissive]

int i, y, temp;

cout << "How many elements should be stored in array? ";
cin >> i;

int arr [i];

for (int k = 0; k < i; k++)
{
cout << "Enter value for element at index " << k << ": ";
cin >> arr[k];
}

for( int x = 0; x < i; x++);
{
for (int y = x + 1; y < i; y++)
{
if (arr[y] < arr[x])
{
temp = arr[x];
arr[x] = arr[y];
arr[x] = temp;
}
}
}

错误:'x' 的名称查找已针对 ISO 'for' 范围 [-fpermissive] 更改

最佳答案

注意最后的;

for( int x = 0; x < i; x++);

并将其删除。

如果你不这样做,那么下一个 { 开始一个 x 未定义的 block ,它在最后一个 ; 处终止。 p>

关于c++ - 数组升序嵌套循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57776886/

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