# include<iostream.h> void fun1() { int x=5; cout<<”x=”<<x<<endl; } voi

我想请教一下,# include void fun1() { int x=5; cout<<”x=”<
最新回答
我帆布比你高跟还青春

2024-11-29 08:05:57

你没有指定namespace吧
# include<iostream.h>
using namespace std;
void fun1()
{
int x=5;
cout<<”x=”<<x<<endl;
}