#include <iostream>
using namespace std;
int main()
{
float x,y;
cin>>x;
if(x<0)
cout<<"Input error!"<<endl;
else
{
//此处写上你的代码
cout<<"x="<<x<<",y="<<y<<endl;
}
return 0;
}老感觉不对劲、、
最新推荐文章于 2025-08-29 21:06:07 发布
#include <iostream>
using namespace std;
int main()
{
float x,y;
cin>>x;
if(x<0)
cout<<"Input error!"<<endl;
else
{
//此处写上你的代码
cout<<"x="<<x<<",y="<<y<<endl;
}
return 0;
}
3307