1 Star 0 Fork 0

CS-IMIS-23/20172305TX

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Age.java 948 Bytes
一键复制 编辑 原始数据 按行查看 历史
//*************************************************************************************
// Age.java Author: Lewis/Loftus
//
// Demonstrates the use of an if statement.
//*************************************************************************************
import java.util.Scanner;
public class Age
{
//-----------------------------------------------------------------------------------
// Reads the user's age and prints comments accordingly.
//-----------------------------------------------------------------------------------
public static void main(String[] args)
{
final int MINOR = 21;
Scanner scan = new Scanner(System.in);
System.out.print("Enter your age: ");
int age = scan.nextInt();
System.out.println("You entered: " + age);
if (age < MINOR)
System.out.println("Yourth is a wonderful thing. Enjoy.");
System.out.println("Age is a state of mind.");
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/CS-IMIS-23/20172305TX.git
git@gitee.com:CS-IMIS-23/20172305TX.git
CS-IMIS-23
20172305TX
20172305TX
master

搜索帮助