为了账号安全,请及时绑定邮箱和手机立即绑定

return的作用

return temp;的作用是什么, 为什么不加不管是输入0或是1,输出结果都是4

正在回答

2 回答

#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;
  
}

0 回复 有任何疑惑可以回复我~
#1

續冩申話

你的代码没有返回值
2015-11-16 回复 有任何疑惑可以回复我~

代码出来看看

0 回复 有任何疑惑可以回复我~
#1

Hc丶 提问者

#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; }
2015-11-01 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之起航篇
  • 参与学习       291032    人
  • 解答问题       760    个

C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华

进入课程

return的作用

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信