Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Homework HelpRSS Feeds

Program to show the use of Conditional AND Operator (&&) in If Statements

Posted By: Easy Tutor     Category: Java     Views: 2261

A Java Program to show the use of Conditional AND Operator (&&) in If Statements.

Code for Program to show the use of Conditional AND Operator (&&) in If Statements in Java

publicclass JAVA_018
 {

    publicstaticvoid main(String[] args)
    {
       char Symbol='\0';

       Symbol=(char)(Math.random( )*128);

       if(Symbol>='A' && Symbol<='Z')
          System.out.println("The Random Character Generated is a Capital Letter : " + Symbol);

       elseif(Symbol>='a' && Symbol<='z')
          System.out.println("The Random Character Generated is a Small Letter : " + Symbol);

       else
          System.out.println("The Random Character Generated is not a letter");
    }
 }
  
Share: 



Easy Tutor
Easy Tutor author of Program to show the use of Conditional AND Operator (&&) in If Statements is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 

Other Interesting Articles in Java:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Joel Gaitan from Japan Comment on: Nov 28
this was truly helpful through a bit hard to follow

Joel Gaitan from Japan Comment on: Nov 28
//simple code for usig && and ||
import java.util.Scanner;
class JAVA_01
{
public static void main(String args[])
{
Scanner no = new Scanner(System.in);
int age;
System.out.println("enter your age ");
age = no.nextInt();
if (age<=5 && age >10)
{
System.out.println("your not allowed in this room");

}
}
}

View All Comments