This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Java Practical No.6.pdf as PDF for free.
6.1) DEVELOP A PROGRAM TO DISPLAY NUMBER 1 TO 50 USING DO-WHILE LOOP. PROGRAM: class vb { public static void main(String args[]) { int i=1; do { System.out.println(i); i++; }while(i<=50); } } OUTPUT: