Computer Science, asked by RYDERno7, 1 month ago

OUTPUT OF THIS PROGRAM

NO SPÃMÏÑG

WRONG ANSWER =20 ANSWER REPORTED​

Attachments:

Answers

Answered by Anonymous
6

Answer:

// filename Test.java

class Test {

public static void main(String[] args) {

for(int i = 0; true; i++) {

System.out.println("Hello");

break;

}

}

}

// Output: Hello

Explanation:

hope this helps you mate

I completed java last year

Similar questions