问题标题: 酷町堂:这是1000题,在虚拟机中做的

0
0
已解决
高振淇
高振淇
修练者
修练者

这是1000题,在虚拟机中做的,编译了以后它说有一处错误,程序如下:

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    freopen("game.in","r",stdin)
    freopen("game.out","w",stdout);
    fclose(stdout);
    fclose(stdin);
    cout<<"Hello,word!";
    return 0;
}

请各位多多指点!!!

谢谢!!!


0
已采纳
傅文彬
傅文彬
新手天翼
新手天翼

#include<bits/stdc++.h>

using namespace std;

int main()

{

freopen("game.in","r",stdin)

freopen("game.out","w",stdout);

cout<<"Hello,word!";

fclose(stdout);

fclose(stdin);

return 0;

}

0
0
陈泉宏
陈泉宏
高级守护
高级守护
int main()
{
    freopen("game.in","r",stdin)
    freopen("game.out","w",stdout);
    cout<<"Hello,word!";
    fclose(stdout);
    fclose(stdin);
    return 0;
}

 

0
0
高梓荣
高梓荣
新手天翼
新手天翼

把第10行放到第7行和第8行之间

高梓荣在2018-10-06 22:13:01追加了内容

稳健操作的5行要么删掉,要么注释掉

0
周建勋
周建勋
中级光能
中级光能
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    //freopen("game.in","r",stdin)
    //freopen("game.out","w",stdout);
    cout<<"Hello,word!";
    //fclose(stdout);
    //fclose(stdin);
    return 0;
}

我要回答