回 帖 发 新 帖 刷新版面

主题:紧急!!!!:求分段函数

【入门】编程求解数学中的分段函数

Time Limit:1000MS  Memory Limit:1000K
Total Submit:837 Accepted:524 

Description 

编程求解数学中的分段函数。 

.............x+1 (当x>0) 
y=f(x)=...0 (当x=0) 
.............x-1 (当x<0) 



Input 

输入一行,只有一个整数x(-30000<=x<=30000)

Output 

输出只有一行,包括1个整数(即y)。

Sample Input 


3

Sample Output 


4

Source 

信息学讲义P2页

回复列表 (共1个回复)

沙发

var x:longint;
begin
  readln(x);
  if x>0 then halt(x+1);
  if x=0 then halt(0);
  if x<0 then halt(x-1);
end.

我来回复

您尚未登录,请登录后再回复。点此登录或注册