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 这个是什么意思?
麻烦回答的朋友一起解决下!万分感谢!