首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴旋风之间的代码贴C++
#include<iostream>
using namespace std;
int max (int x,int y);
int main()
{
    int a,b,c,m1,m2;
    cout<<"input a,b,c,:\t";
    cin>>a>>b>>c;
    m1=max(a,b);
    m2=max(m1,c);
    cout<<"max="<<m1<<m2;//这还是改改吧,太丑啦
    return 0;//这要加,记住你的返回值
......................
阅读全部 | 2012年12月3日 23:41
1
旋风之间