0
Can you xplain y the following pgm has no output??? ASAP
Public class test { Public static void main (String args []) { Int i=1; do while(i<1) System.out.println("i is" +i); While (i>1); } }
3 Antworten
+ 7
simple syntax errors
here is the corrected code
public class test {
public static void main (String args []) {
    int i=1;
    do {
        System.out.println("i is" +i);
    }while (i>1);
}}
0
👌👌



