今天写的一个键盘录入小程序
感觉挺好的:victory:
import java.util.Scanner ;
class Demo5 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in) ;
System.out.println("请输入一个整数:") ;
int x = sc.nextInt() ;
int y= 0 ;
if (x > 0) {
y = x+3 ;
}else if(x == 0) {
y =0 ;
}else if(x < 0) {
y = (x*x)-1 ;
}else {
System.out.println("输入的整数有误") ;
}
System.out.println(y) ;
}
}
|
|