cout<<y;错误

2025-01-01 08:27:08
推荐回答(3个)
回答1:

。。。

错的很多。。。

c++一定要记住加上这句,要不然不能用cout!!!!

using namespace std;

#include      //iostream不要写错
using namespace std; //一定要加这句!!
int main()
{int x,y;
cin>>x; //输入x!
if(x>1)
{y=x;
}
if(x>=1&&x<10){y=2*x-1;}; //运算符*一定要加上去!

if(x>=10){3*x-11;}; //不要随便加do和break!!那个是while的!!
cout< getchar();
return 0; //int main函数要返回值!!
}


最后再说一个,int main要返回值,你还要加上return 0;然后你x没有初始值,那你的运算结果没意义!!

回答2:

#include
using namespace std;
int main()
{
int x,y;
cin>>x;
if(x<1)
{
y=x;
}
if(x>=1 && x<10)
{
y=2*x-1;
}

if(x>=10)

{
y=3*x-11;

}
cout< getchar();
return 0;

}

回答3:

头文件出错