app.md 1.2 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4
# Java 程序的基本结构

以下选项中,有语法错误的是:

M
Mars Liu 已提交
5
## 答案
M
Mars Liu 已提交
6 7 8 9 10 11 12 13 14 15 16 17

```java
public App {
    public static main(String[] args){
        for(int i=0; i<10; i++){
            System.out.println(i);
        }
    }
}

```

M
Mars Liu 已提交
18 19 20
## 选项

### A
M
Mars Liu 已提交
21 22 23 24 25 26 27 28 29 30 31 32

```java
public class App {
    public static void main(String[] args){
        for(int i=0; i<10; i++){
            System.out.println(i);
        }
    }
}

```

M
Mars Liu 已提交
33
### B
M
Mars Liu 已提交
34 35 36 37

```java
public class App {
    public static void main(String[] args){
M
Mars Liu 已提交
38
        for(int i=0; i<args.length; i++){
M
Mars Liu 已提交
39 40 41 42 43 44 45
            System.out.println(i);
        }
    }
}

```

M
Mars Liu 已提交
46
### C
M
Mars Liu 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59

```java
public class App {
    public static int sum(int[] array){
        int a = 0;
        for(int i=0; i<array.length; i++){
            a += array[i];
        }
        return a;
    }
}
```

M
Mars Liu 已提交
60
### D
M
Mars Liu 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73

```java
public class App {
    public int sum(int[] array){
        int a = 0;
        for(int i=0; i<array.length; i++){
            a += array[i];
        }
        return a;
    }
}
```

M
Mars Liu 已提交
74
### E
M
Mars Liu 已提交
75 76 77 78 79 80 81 82 83 84 85

```java
public interface App {
    default int sum(int[] array){
        int a = 0;
        for(int i=0; i<array.length; i++){
            a += array[i];
        }
        return a;
    }
}
M
Mars Liu 已提交
86
```