📄 elvis.java
字号:
class Elvis {
public static void main(String[] arguments) {
int weight = 250;
System.out.println("Elvis weighs " + weight);
System.out.println("Elvis visits all-you-can-eat rib joint.");
System.out.println("Elvis throws Thanksgiving luau.");
weight = weight + 10;
System.out.println("Elvis now weighs " + weight);
System.out.println("Elvis discovers aerobics.");
weight = weight - 15;
System.out.println("Elvis now weighs " + weight);
System.out.println("Elvis falls into washing machine during "
+ "shrink cycle.");
weight = weight / 3;
System.out.println("Elvis now weighs " + weight);
System.out.println("Oops! Elvis clones himself 12 times.");
weight = weight + (weight * 12);
System.out.println("The 13 Elvii now weigh " + weight);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -