Java Practical No.6.pdf

  • Uploaded by: Meer Kukreja
  • 0
  • 0
  • June 2020
  • PDF

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.

More details

  • Words: 33
  • Pages: 2
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:

Related Documents


More Documents from "Meer Kukreja"