摘要:
7.14 (1)三元运算符 格式:关系表达式?表达式1:表达式2; 运行顺序:判断关系表达式是否为true,是则运行表达式1,否则运行表达式2 代码示例: //比较大小 import java.util.Scanner; public class Sanyuan { public static vo 阅读全文
摘要:
7.7 (1)学习了java注释: 单行注释:// 代码示例: public class helloworld { public static void main(String[] args) { //输出helloworld System.out.println("hello world"); } 阅读全文