📅  最后修改于: 2022-03-11 14:52:22.639000             🧑  作者: Mango
jshell
| Welcome to JShell -- Version 12.0.1
| For an introduction type: /help intro
jshell> int i=99;
i ==> 99
jshell> System.out.println(i);
99