Computer Science, asked by 2wrdwer, 1 year ago

Int x=10, y=5,z;
if(x>y | | x==y)
z=++x + --y;
System.out.println(z+""+x+""+y);

Answers

Answered by arsharcharles
2

Answer:

Explanation:  

public class Hello

{

   public static void main(String []args)

   {

int x=10;

int y=5;

int z;

if(x>y || x==y)

{

z=++x + --y;

System.out.println(z+""+x+""+y);

}

}

}

ans:15114

Similar questions