Friday, June 15, 2018

WAP IN JAVA TO SHOW THE USE OF RETURN

class Seventh
{
public static void main(String args[])
{
boolean t=true;
System.out.println("Before the return");
if(t)
System.out.println("This wont execute");
}
}


No comments:

Post a Comment