Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main {
- public static void main(String[] args) {
- Jollibee nosneg = new Jollibee();
- System.out.println(nosneg.menu);
- nosneg.magkwento();
- Traits User1 = new Traits("", "taurus", 18, "intp");
- Traits User2 = new Traits("", "pisces", 69, "entj");
- Traits User3 = new Traits("", "virgo", 18, "intj");
- System.out.println(User1.mbti + "\n" + User1.zodiac);
- User1.natutulog();
- User1.ilangtaon();
- System.out.println("");
- User2.ilangtaon();
- System.out.println("");
- User1.personality();
- User2.personality();
- System.out.println("");
- User1.showAll();
- System.out.println("");
- User2.showAll();
- System.out.println("");
- User3.showAll();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement