谭浩强 c++程序设计第一章课后习题 第7题

#include <iostream>
using namespace std;

int main()
{
    int a,b,c;
    int f(int x,int y,int z);//这是函数的声明 //cin console控制台
    cout<<"请输入三个整数类型的数字:" <<endl;
    cin>>a>>b>>c;
    c=f(a,b,c);//abc有具体值,称为实际参数 
    cout<<c<<endl;
    return 0;
}
int f(int x,int y,int z)//用于接收实际参数,称为形式参数 
{
    int m;
    if(x<y)
        m=x;
    else
        m=y;
    if(z<m)
        m=z;
    return (m);
}

 

posted @ 2017-09-08 08:49  Advancing-Swift  阅读(395)  评论(2编辑  收藏  举报