⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 showlogicerrors.java

📁 此源码为机械工业出版社出版的《Java语言程序设计》第三版所配套的书中所有源代码。
💻 JAVA
字号:
// program contains a logic errors
public class ShowLogicErrors
{
  // Determine if a number is between 1 and 100 inclusively
  public static void main(String[] args)
  {
    // Prompt the user to enter a number
    System.out.println("Please enter an integer");
    int number = MyInput.readInt();

    // Display the result
    System.out.println("The number is between 1 and 100, inclusively? " +
      ((1 < number) && (number < 100)));
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -