セグメント関数の評価(関数の使用)

603 ワード

/*  
*               
* Copyright (c)2012,              
* All rightsreserved.  
*     : fun.cpp                             
*       :                                
*     :2012  11  18   
*    : v1.0        
*                
*     :     x  
*     :     : x<0.3 ,f(x)=0;  0.3≤x≤0.8 ,f(x)=(x-0.3)/(0.8-0.3); x>0.8 ,f(x)=1;  
*     :f(x)    
*/   
#include
using namespace std;
const double x1=0.3,x2=0.8;
double f(double x)
{
	double y;
	if(x>x;
	cout<