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个回答
展开全部
#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;
你试试看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |