Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

If Statements (Cont)

Lesson 16
Author : GOUP
Last Updated : September, 2020


Code

Copyboolean isStudent = false;
boolean isSmart = false;

if(isStudent && isSmart){
     System.out.println("You are a student");
} else if(isStudent && !isSmart){
     System.out.println("You are not a smart student");
} else {
     System.out.println("You are not a student and not smart");
}

// >, <, >=, <=, !=, ==, String.equals()
if(1 > 3){
     System.out.println("number comparison was true");
}

if('a' > 'b'){
     System.out.println("character comparison was true");
}

if("dog".equals("cat")){
     System.out.println("string comparison was true");
}