Int x=10, y=5,z;
if(x>y | | x==y)
z=++x + --y;
System.out.println(z+""+x+""+y);
Answers
Answered by
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
Science,
6 months ago
English,
6 months ago
Art,
6 months ago
Political Science,
1 year ago
Physics,
1 year ago
CBSE BOARD X,
1 year ago
Math,
1 year ago