Welcome To The World Of Hacking


Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code

Wednesday

JAVA PROGRAMMING TUTORIAL 18: DO....WHILE LOOP

public class HackDefence{

public static void main(String[]args){

int i=0;

do{  /* do...while loop diplays atleast one output before checking the condition */

System.out.println(i);

                     i++;

}while(i<4);

}

}

OUTPUT:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...