标签:string isp 判断 指定 oid pre system span sys
package com.itranswarp.learnjava; /** * Is primary student? */ public class PrimaryStudent { public static void main(String[] args) { int age = 7; // primary student的定义: 6~12岁 boolean isPrimaryStudent = age>=6&age<=12; System.out.println(isPrimaryStudent ? "Yes" : "No"); } }
标签:string isp 判断 指定 oid pre system span sys
原文地址:https://www.cnblogs.com/zyz322/p/12283875.html