public class Main {
public static void main(String[] args) {
// 此处代码不能使用 x
int x = 100;
// 此处代码可以使用 x
System.out.println(x);
}