问题及代码:(简单)
/*
* Copyright (c) 2014, 烟台大学计算机与控制工程学院
* All rights reserved.
* 文件名称:simple.cpp
* 作者:Lingle
* 完成日期:2014年10月16日
* 版本号:v1.0
*
* 问题描述:简单的分段函数,当X<1时和x>=2时带入不同方程式进行计算
* 输入描述:输入一个值x
* 程序输出:判断x值是否小于1,代入适当的方程式
*/
#include <iostream>
using namespace std;
int main()
{
double x,y;
cout<<"x=";
cin>>x;
if(x<1)
y=-x+1;
else
y=x-1;
cout<<"y="<<y;
return 0;
}
问题及代码:(复杂)
/*
* Copyright (c) 2014, 烟台大学计算机与控制工程学院
* All rights reserved.
* 文件名称:complex.cpp
* 作者:Lingle
* 完成日期:2014年10月16日
* 版本号:v1.0
*
* 问题描述:复杂的分段函数,当X<2时、6>x>=2时和x>=6时带入不同方程式进行计算
* 输入描述:输入一个值x
* 程序输出:判断x值包含在三个范围中哪个里面,代入适当的方程式
*/
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x,y;
cout<<"x=";
cin>>x;
if (x<2)
y=x;
else if (x>=2 && x<6)
y=x*x+1;
else if (x>=6 && x<10)
y=sqrt(x+1);
else
y=1.0/(x+1);
cout<<"y="<<y;
return 0;
}
运行结果:
知识点总结:
用C++描述了分段函数,并用了if嵌套式语句。
知道了用sqrt代表根号需在开头加上<cmath>。