Advertisement
isabelgh

Pascal

Sep 9th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1.  
  2. public interface Pascal {
  3.    
  4.     //upside down/right side up
  5.     boolean b = true;
  6.    
  7.     public void printPascal(int n);
  8.     public int binom(int n, int k);
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement