1、打开电脑中的java开发工具。
2、进入idea软件后,我们新建以名为switch的项目,并在该项目的src目录下创建一个名为demo的类文件。
3、使用switch实现分段函数,具体代码如下:import java.util.Scanner;public class demo { public static void main(String[] args) { Scanner s = new Scanner(System.in);。
4、代码中,我们根据判断得出x对应的区间,然后,将对应区间赋值与字符串i,然后利用switch判断i的具体值,进而匹配对应的计算表达式。
5、运行代码后,我们输入不同区间的x值。
6、便会得到分段函数对应的结果啦。
#include
int main()
{
int x,y;
scanf("%d",&x);
if(x>-5 && x<0)
y = x;
else if(x = 0)
y = x - 1;
else if(x>0 && x<10)
y = x + 1;
printf("%d\n",y);
return 0;
}
public class Test {
public static void main(String[] args) {
int x,y;
Scanner input = new Scanner(System.in);
x = input.nextInt();
if(x>-5 & x<0)
y = x;
else if(x = 0)
y = x-1;
else if(x>0 && x<10)
y = x + 1;
System.out.pringln(y);
}
}