Livejournal
Log in
Post
Friends
My journal
pinch_hitter
A Java Rangoli...
pinch_hitter
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
2
Up