A Java Rangoli...

Oct 08, 2009 14:19

import java.util.*;
public class Pascal{
        public static void main(String[] args){
                int n = Integer.parseInt(args[0]);
                char[] ch =new char[10];
                for(int i=0;i<10;i++)
                        ch[i] = ' ';
                int count = 0;
                Random rand = new Random();
                while(count ( Read more... )

code, pascal, rangoli, java

Leave a comment

Comments 2

dangiankit October 8 2009, 18:03:58 UTC
Colors?

Reply

pinch_hitter October 9 2009, 04:33:55 UTC
My favorite color(s) is Black & White :-)
add your color(s). source is open..

Reply


Leave a comment

Up