- /*
- * Copyright (c) 2012,烟台大学计算机学院
- * All rights reserved.
- *作 者: 王 俊
- *完成日期:2012年 10月 22日
- *版本号:v1.0
- *输入描述:无
- *问题描述:设计特定的程序来解决实际问题
- *程序输出: 看图
- *问题分析:略
- *算法设计: 略
- *我的过程:
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
float x,y;
cout<<"x=";
cin>>x;
if(0<=x<2)
y=x;
if(2<=x<6)
y=x*x+1;
if(6<=x<10)
y=sqrt(x+1);
else
y=1/(x+1);
cout<<"y="<<y<<endl;
return 0;
}
运行结果: