Computer Science, asked by ratnadeepsaha85, 5 hours ago

class Test {

public

static void main(String[] args)

{

int x = 1, y = 2;

do

System.out.println("FRIENDS");

while (x < y);

System.out.println("ENEMY");
}
}
what is the output ?​

Answers

Answered by uvprasad691
1

Answer:

the Answer is "ENEMY"

Explanation:

because X=1 and x<y

Similar questions