一.三元运算符的使用
二.在通过键盘赋予变量数值
代码:
import java.util.Scanner;public class scan{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int x=sc.nextInt(); System.out.println("x:"+x); }}