函数中引用数组做形参,只数组名,这是本次巩固的得到的经验;其次,题目中随意取出数组中的两个元素,让我想起scratch中的一个参数,但是不知道C++里应该怎么写。
//定义常量count
const int count = 3;
//? int *p = ?;
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
const int count = 3;
//? int *p = ?;
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
它可以改变指向,但不可以改变值 int const * p
它可以改变值,但不可以改变指向 int * const p
以小星星为分界线; const:常量 (缩小修改的风险)
它可以改变值,但不可以改变指向 int * const p
以小星星为分界线; const:常量 (缩小修改的风险)
2018-03-02
int getMax(int arr[],int count)
{
int maxNum=arr[0];
for(int i = 1; i < count; i++)
{
if(maxNum<arr[i])
{
maxNum=arr[i];
}
}
return maxNum;
}
int main(void)
{
int numArr[3] = {3, 8, 6};
cout << getMax(3, 6) << endl;
cout << getMax(numArr,3) << endl;
return 0;
}
{
int maxNum=arr[0];
for(int i = 1; i < count; i++)
{
if(maxNum<arr[i])
{
maxNum=arr[i];
}
}
return maxNum;
}
int main(void)
{
int numArr[3] = {3, 8, 6};
cout << getMax(3, 6) << endl;
cout << getMax(numArr,3) << endl;
return 0;
}