test.java
来自「数字游戏_Java版,一个用java写的数字游戏」· Java 代码 · 共 26 行
JAVA
26 行
package com.john.test;
public class Test
{
static int index = 0;
/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
hello();
}
public static void hello()
{
System.out.println(index++);
hello();
hello();
hello();
hello();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?