Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package pkg;
- public class PascalMain{
- public static void main(String Args[])
- {
- System.out.println("Default");
- Pascal p1 = new Pascal();
- p1.printPascal();
- System.out.println("Parameterized");
- Pascal p2 = new Pascal(7);
- p2.printPascal();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement