摘要:
条件语句 // IF语句public class IfTest1 { public static void main(String[] args) { int heartBeats = 79; // if... if(heartBeats < 60 || heartBeats > 100) { Sy 阅读全文
摘要:
算术运算符 class AriTest{ public static void main(String[] args){ int num1 = 12; int num2 = 5; int result1 = num1 / num2; // System.out.println(result1); i 阅读全文