Friday, August 9, 2019

SUB of 2 number in JAVA

SUB of 2 number in JAVA :-

class sub
{
 public static void main ()
 {
  int x=70,z=35,y;
  y=x-z;
  System.out.println(y);
 }
}

No comments:

Post a Comment