Wednesday, April 3, 2013

contoh "while"


/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package tugas;

/**
 *
 * @author surur
 */
public class buatwhile {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
       int a;
       a=1;
       while (a<=1000)
       {System.out.println(a+"\tSyifaus Surur");
        a++;
       }
        }

    }


No comments:

Post a Comment