vs2010无法识别 cout,还有endl也是被波浪线。
#include<iostream>intmax(inta,intb);intmain(){intr=3,s=5,t;t=max(r,s);cout<<t<<endl;r...
#include <iostream>
int max(int a,int b);
int main()
{
int r=3,s=5,t;
t=max(r,s);
cout<<t<<endl;
return 0;
}
int max(int a,int b)
{
if (a>=b) return a;
return b;
}
1>d:\software\vs2010项目\learn\learn\test.cpp(7): error C2065: “cout”: 未声明的标识符
1>d:\software\vs2010项目\learn\learn\test.cpp(8): error C2065: “endl”: 未声明的标识符 展开
int max(int a,int b);
int main()
{
int r=3,s=5,t;
t=max(r,s);
cout<<t<<endl;
return 0;
}
int max(int a,int b)
{
if (a>=b) return a;
return b;
}
1>d:\software\vs2010项目\learn\learn\test.cpp(7): error C2065: “cout”: 未声明的标识符
1>d:\software\vs2010项目\learn\learn\test.cpp(8): error C2065: “endl”: 未声明的标识符 展开
4个回答
微测检测5.10
2023-05-10 广告
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇...
点击进入详情页
本回答由微测检测5.10提供
展开全部
#include <iostream>
using namespace std;
int max(int a,int b);
int main()
{
int r=3,s=5,t;
t=max(r,s);
cout<<t<<endl;
return 0;
}
int max(int a,int b)
{
if (a>=b) return a;
return b;
}
using namespace std;
int max(int a,int b);
int main()
{
int r=3,s=5,t;
t=max(r,s);
cout<<t<<endl;
return 0;
}
int max(int a,int b)
{
if (a>=b) return a;
return b;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
下面加上
using namespace std;
下面加上
using namespace std;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你应该这样吧
#include <iostream>
using namespace std;
你试试看
#include <iostream>
using namespace std;
你试试看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询