课程
/后端开发
/C++
/C++远征之起航篇
return temp;的作用是什么, 为什么不加不管是输入0或是1,输出结果都是4
2015-10-25
源自:C++远征之起航篇 5-1
正在回答
#include<iostream>using namespace std;int get(int *a,int m,bool isMax){ int temp=a[0]; for(int i=1;i<m;i++) { if(isMax) { if(temp<a[i]) { temp=a[i]; } } else { if(temp>a[i]) { temp=a[i]; } } }
}
int main(){ int a[5]={3,5,7,1,10}; bool isMax=false; cin>>isMax; cout<<get(a,5,isMax)<<endl; }
續冩申話
代码出来看看
Hc丶 提问者
举报
C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华