Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to use boolean type in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        boolean b;    
        
        b = false;    
        System.out.println(b);    
        
        b = true;    
        System.out.println(b);    
        if (b) 
            System.out.println("b = true");    
        
        b = false;    
        if (!b) 
            System.out.println("b = false");
   
        System.out.println((4 > 5));
        System.out.println((21 > 19));
    }
}



/*
run:

false
true
b = true
b = false
false
true

*/

 



answered May 25, 2019 by avibootz

Related questions

1 answer 134 views
1 answer 150 views
1 answer 153 views
153 views asked Aug 23, 2017 by avibootz
1 answer 162 views
1 answer 127 views
1 answer 152 views
...