1.

The following code has some error(s). Rewrite the correct code underlining all the corrections made :int z;z =14;do;z = z-2;System.out. displayIn(z);}while z >= 2;

Answer»

int z;

z = 14;

do//no semicolon

{

z = z - 2;

System.out.printIn(z);

} while (z >= 2);



Discussion

No Comment Found