用C语言编写一个求两个数最大值的函数,在主函数输入3个整数,调用该函数输出其中最大值

日期:2012-05-16 16:25:54 人气:1

用C语言编写一个求两个数最大值的函数,在主函数输入3个整数,调用该函数输出其中最大值

#include using namespace std; int max(int,int); int max(int m,int n){return(m>n)?m:n;} int main(){ cout<<"请输入3个整数"<<endl; int x,y,z; cin>>x>>y>>z; cout<<"这三个整数中最大的是:"; cout<< max(m
    A+
热门评论