| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 762 人关注过本帖
标题:2个C++小问题,麻烦帮忙解决下!
取消只看楼主 加入收藏
依然饭忒稀
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-3-8
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
2个C++小问题,麻烦帮忙解决下!
#include<iostream>
using namespace std;
int max(int,int);
int main()
{
int a,b,m;
cin>>a>>b;
m=max(a,b);
  cout<<"The max is"<<m<<endl;
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return z;
}
中 下面的max函数中 最后的返回值 return z 我看书上有的加了()请问这个有影响吗?

#include<iostream>
#include<iomainp>
using namespace std;
int main()
{
int i=5;float x=3.5;char ch='a';
cout<<"i="<<setw(4)<<i<<",x="<<setw(4)<<x<<",ch="<<setw(4)<<ch;
return 0;
}
为什么这个在VC中通不过啊!

d:\vc\msdev98\myprojects\0005\set.cpp(2) : fatal error C1083: Cannot open include file: 'iomainp': No such file or directory 这个是什么意思?

 麻烦回答的朋友一起解决下!万分感谢!
搜索更多相关主题的帖子: return 
2011-03-18 23:28
快速回复:2个C++小问题,麻烦帮忙解决下!
数据加载中...
 
   



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

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