/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称 :main.cpp
*作 者 :韩娟
*完成日期 :2014年10月16日
*版 本 号 :v1.0
*
*问题描述 :使用if~else语句,输入一个x的值,根据公式求出y的值
*输入描述 :输入一个x的值
*程序输出 :输出一个对应的y值
*/
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x,y;
cout<<"x的值为"<<endl;
cin>>x;
if(x<2)
y=x;
else if(2<=x&&x<6)
y=x*x+1;
else if(6<=x&&x<10)
y=sqrt(x+1);
else
y=1/(x+1);
cout<<"y的值为"<<y<<endl;
return 0;
}