根据以下函数关系,对于给定的每个x值,求出y值。请编写此程序。

2024-12-03 09:48:21
推荐回答(2个)
回答1:

#include
using namespace std;
int main() {
double x;
cin>>x;
if((x==5)||(x==1)) { cout< if((x==2)||(x==10)) {cout< if((x==3.5)||(x==123.456)) {cout< system("pause");
return 0;
}
//这个是根据Dev-C++写的,基本上适用所有的编辑器。

回答2:

#include
using namespace std;
int main() 
{
 float x;    
 cin>>x;
 cout<<"x-1 = "<< x-1 << endl;
 cout<<"x*(x+2) = "<< x*(x+2) << endl;
 cout<<"x*2 = "<< x*2 << endl;

 system("pause");    
 return 0;
}