Saturday, April 20, 2013

Persegi kotak Angka



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

package coba;

import java.util.Scanner;

/**
 *
 * @author surur
 */
public class yess {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Scanner x=new Scanner(System.in);
        int y=x.nextInt();
        for (int i = 0; i < y; i++) {
            System.out.println();
            for (int j = 0; j < y; j++) {
                System.out.print(i);

            }
        }
        }
}

No comments:

Post a Comment