Answer: - "if" condition returns a true which is a boolean data when condition is true and provide false which also is a boolean when condition is false.
Example Code is here:
import java.util.*;
public class ReturnofIf {
public static void main(String[] args) throws java.io.IOException
{
boolean tf; //boolean tf is maid
if(tf = (char) System.in.read() >= 'M')
{
System.out.println("Given Value is:" +tf);
}
else
{
System.out.println("Given Value is:" +tf);
}
}
}
_________________________________________________________________________________
Input : A
Output : Given Value is:false
Input : N
Output : Given Value is:true
No comments:
Post a Comment