C++ cout 未声明的标识符

/main_assignment.cpp#include<iostream>#include<stdio.h>#include"stdafx.h"#include<ost... / main_assignment.cpp

#include <iostream>
#include <stdio.h>
#include "stdafx.h"
#include <ostream>
#include <istream>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}

int main()
{
int a, b, c, d, e, f, g, x = 0, y = 100;

while (x < y);
a = 100000 + rand() % 899999;
b = rand() % 100;
c = rand() % 100;
d = rand() % 100;
e = rand() % 100;
f = rand() % 100;
g = rand() % 100;
cout << a << b << c << d << e << f << g << endl;
x = x++;

return 0;
}
展开
 我来答
bad5tone
2017-05-31 · TA获得超过437个赞
知道小有建树答主
回答量:215
采纳率:0%
帮助的人:150万
展开全部
#include <iostream>
#include <stdio.h>
//#include "stdafx.h"
#include <ostream>
#include <istream>
#include <stdlib.h>            //rand()函数声明所在头文件
using namespace std;

int main()
{
int a, b, c, d, e, f, g, x = 0, y = 100;

while (x < y){                //while花括号包括下面语句
a = 100000 + rand() % 899999;
b = rand() % 100;
c = rand() % 100;
d = rand() % 100;
e = rand() % 100;
f = rand() % 100;
g = rand() % 100;
cout << a <<" "<< b <<" "<< c <<" "<< d <<" "<< e <<" "<< f <<" "<< g << endl;
x++;                        //x自加就行了
}
return 0;
}

调试可行。

mafangsan
2017-05-31 · TA获得超过1.2万个赞
知道大有可为答主
回答量:1万
采纳率:71%
帮助的人:2573万
展开全部
怎么两个main函数?
追问
去掉也不行 error C2065: “cout”: 未声明的标识符
追答
最前面修改成这样
#include "stdafx.h"
#include
using namespace std;
#include
那个_tmain函数删除掉。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式