If Else Statement Java

If Else Statement Java

If Else Statement Java


if else statement java,if else syntax in java,if then else java,if then else statement,else without if java


If else

import java.io.*;
class arun
{
public Static void main(String args[]) throws IOException
{
DataInputStream in = new DataInputStream(System.in);
{
int a;
System.out.println("Enter the value of a is:");
a=Integer.parseInt(in.readLine());
if(a>=18)
System.out.println("I am eligible for vote");
else
System.out.println("I am not eligible for vote");
}
}
}


Post a Comment

0 Comments