inline 内联

#include<iostream>
using namespace std;
int m(int x,int y,int z);
int main(){
    int a,b,c,max;
    cin>>a>>b>>c;
    max=m(a,b,c);
    cout<<"the largest is "<<max<<endl;
    system("pause");
    return 0;
}
inline int m(int x,int y,int z){
       if(z>x)
       x=z;
       if(y>x)
       x=y;
       return x;
   }

 

 

posted on 2017-11-09 20:19  三叶癌  阅读(78)  评论(0编辑  收藏  举报

导航