7.7
学习了java中if语句的三种格式
简单的if和if···else语句,还有if···else if循环语句
简单写了一个判断一个数是否为奇数的例子
public class If { static int number; public static void main(String[] args) { Scanner sc = new Scanner(System.in); number = sc.nextInt(); if(number%2==0){ System.out.println("这个数不是奇数!"); }
else{ System.out.println("这个数是奇数!"); } } }
晚上睡前读会书
明天计划下午学习高数和java,上午出门