sdutoj 2252 分段函数求值

分段函数求值

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

有如下分段函数
F(x) = x^2 + 1   当x> 0时;
F(x) = -x   当x<0时;
F(x) = 100.0  当x=0时;
编程根据输入的不同x(x为实数),输出其对应的函数值

Input

多组输入,每组一个实数x。处理到文件结束。

Output

对于每组输入x,输出其对应的F(x),每组一行,结果保留1位小数。

Example Input

8.00

-5.0

第一次用java做有小数输出的题,第一发因为粗心输出的时候输出了y,后面一看改成sum就a了,看来我以后得小心了,以前这种低级错误也长犯

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner in = new Scanner(System.in);
		while (in.hasNext()){
			double x = in.nextDouble();
			double y = 0;
			if (x > 0)
				y = x * x + 1;
			else if (x < 0)
				y = -x;
			else if (x == 0)
				y = 100.0;
			String sum = String.format("%.1f", y);//主要是这一句来将y变成一个一位小数的字符串
			System.out.println(sum);
		}
	}

}


你可能感兴趣的:(sdutoj 2252 分段函数求值)