与Java中的“ If语句”混淆

时间:2018-08-09 00:55:04

标签: java if-statement

我必须为Java编写一个分配代码,如果输入10以外的任何内容,我肯定会错失这个“ if语句”,这不会打印出变量信息。图片已附上。

import java.util.Scanner;

public class JavaApplication7 {

  public static void main(String[] args) {

    Scanner input = new Scanner(System.in);
    int code = 0;
    code = input.nextInt();

    if (code == 10); {
      System.out.println(code);
    }
  }

}

If statement

1 个答案:

答案 0 :(得分:0)

没关系,我想我想通了,我早就结束了我的声明,或者这东西不是很宽容。编辑:刚看到snr回答了哈哈,谢谢。