| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1107 人关注过本帖
标题:函数定义题目的问题
取消只看楼主 加入收藏
洪夜馨
Rank: 1
等 级:新手上路
帖 子:85
专家分:5
注 册:2009-6-12
结帖率:91.43%
收藏
已结贴  问题点数:40 回复次数:2 
函数定义题目的问题
我弄的是:
#include "iostream.h"
int max(int a,int b);
int main()
{
    do
    {
    int h,f,t;
    char q;
    cout<<"请输入你想要比对的整数"<<endl;
    cin>>h>>f;
    cout<<"你输入的整数为"<<h<<"和"<<f<<"吗?"<<endl;
    cout<<"是的话请按Y,反之请按N"<<endl;
    cin<<q;
    if(q!='n'&&'N'&&'y'&&'Y')
    {
        cout<<"输入错误"<<endl;
    }
    }while(q!='y'&&'Y')
        t=max(h,f);
    cout<<"这2个整数中最大的数为"<<t<<endl;
    return 0;
}
int max(int a,int b)
{
    if(a>=b) return a;
    return b;
}
而下面编译的时候显示:
--------------------Configuration: 1 - Win32 Debug--------------------
Compiling...
1.cpp
F:\教育教学\练习\1.cpp(13) : error C2676: binary '<<' : 'class istream_withassign' does not define this operator or a conversion to a type acceptable to the predefined operator
F:\教育教学\练习\1.cpp(18) : error C2065: 'q' : undeclared identifier
F:\教育教学\练习\1.cpp(19) : error C2146: syntax error : missing ';' before identifier 't'
F:\教育教学\练习\1.cpp(19) : error C2065: 't' : undeclared identifier
F:\教育教学\练习\1.cpp(19) : error C2065: 'h' : undeclared identifier
F:\教育教学\练习\1.cpp(19) : error C2065: 'f' : undeclared identifier
执行 cl.exe 时出错.

1.obj - 1 error(s), 0 warning(s)
谁能告诉我哪里错了?

另外再问一下,谁能教教我下面显示的东西怎么看?如果会看了我就能自己解决了.
搜索更多相关主题的帖子: 函数 定义 
2009-07-16 08:49
洪夜馨
Rank: 1
等 级:新手上路
帖 子:85
专家分:5
注 册:2009-6-12
收藏
得分:0 
using namespace std;
请问一下,是什么意思?
2009-07-16 15:55
洪夜馨
Rank: 1
等 级:新手上路
帖 子:85
专家分:5
注 册:2009-6-12
收藏
得分:0 
哦,我已经发新帖了。谢谢你,wuyun8536。我还是结帖吧。
2009-07-16 16:16
快速回复:函数定义题目的问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018352 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved