Rabu, 14 Maret 2012

Java Class | Loop Bersarang | Tertawa


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

/**
 *
 * @author 9niNEFOur4
 */
public class Loop {
        public static void main(String[] args){
            for(int i=1; i<100; i++){
                for(int j=i; j<100; j++){
                   System.out.print("Ha");
                }
                System.out.println(":D");
            }
        }
    }

Tidak ada komentar:

Posting Komentar