関数の値の計算

612 ワード

/* 
* Copyright (c) 2013,           
* All rights reserved. 
*       : (  ) 
*     :2013  10 15  
*      :v1.0 
*     :      。
*     :8		-7	1	0	-3
*     :7		8	0	1	2
*     :  x,     y     。
*/ 
#include <iostream>
using namespace std;
int main()
{
	int x,y;
	cout<<"please into one number:";
	cin>>x;
	if(x>=1)
	{
		y=x-1;
	}
	else
	{
		y=-x+1;
	}
	cout<<"y="<<y<<endl;
	return 0;
}