2017/4/8 我是为了可以毕业才来看的java,有些无从下手的感觉,还是先大致的看一遍,有些印象吧
2017-04-08
http://www.imooc.com/article/17384,这是我做的程序,基本重现了老师展示的功能,添加了注释进行说明,大家可以看一下,思路还是很清晰的
2017-04-06
我做的 大家帮忙看看呗 哪里错了 public class HelloWorld {
// 定义静态变量score1
static int score1 = 86 int score2 = 92; public static void int sum( return (score1+score2); }public static void main(String[] args) {// 调用静态方法sum并接收返回值 int allScore = HelloWorld.sum; System.out.println("总分:" + allScore);} }
// 定义静态变量score1
static int score1 = 86 int score2 = 92; public static void int sum( return (score1+score2); }public static void main(String[] args) {// 调用静态方法sum并接收返回值 int allScore = HelloWorld.sum; System.out.println("总分:" + allScore);} }
2017-04-06