我的代碼是繼在數組如何初始化一個沒有任何錯誤的數組?
#include <iostream>
using namespace std;
int main(){
int i;
int array[i]={1,2,3,4,5}
int temp;
for(int i=0;i<6;i++)
{
if(array[i]>temp)
temp=A[i];
}
cout<<"the maximum number is "<<temp<<endl;
return 0;
}
找到最大,但即時通訊在初始化數組的行收到錯誤,爲什麼會這樣呢?我們如何初始化數組?
有什麼辦法'int數組[我] = {1,2,3,4 ,5}'是什麼意思? (並且,你忘了';') – elyashiv
請閱讀本書的基礎知識,並閱讀有關初始化的內容。 'int i;'然後'int數組[i]'。你對陣列的期望大小是多少? – Nawaz
'int array [i]'要麼正確初始化'i',要麼使用數字! –