public class HelloWorld {
public static void main(String[] args) {
int age=25;
String type;
if (age>=60)
type="老年 ";
else if (age>=40);
type="中年 ";
else if (age>=18);
type="少年 ";
else
type ="童年 ";
System .out.println(type);
}
望远
相关分类