« All Events
12 PM – Intro To Java – Gamas
February 12, 2022 @ 12:00 pm - 1:00 pm
Homework
- Create a new Java project in your IntelliJ. Name it SAT-12PM-EmailApplication
- Create a new class EmailAccount.java with the following attributes: email, password, name;
- Create a new class EmailSystem.java. This is going to be the starting point of your system.
- In the EmailSystem, create the run method and other methods necessarily to be able to do the following features below:
Welcome to AYCLOGIC Email System.
Please select from below
1. Create an Email Account
2. Login
3. List all Email Accounts
4. Exit
Enter your selection: 1
CREATE EMAIL ACCOUNT
1. Enter your name: Crystal
2. Enter your email: crystal@gmail.com
3. Enter your password: abcd
You have successfully created email account for Crystal.
Please select from below
1. Create an Email Account
2. Login
3. List all Email Accounts
4. Exit
Enter your selection: 3
There are total of 3 email accounts in the system
1. Gamas Chang - gamas@ayclogic.com
2. Crystal - crystal@gmail.com
3. Jessica Sunjoyo - jessica@ayclogic.com
Please select from below
1. Create an Email Account
2. Login
3. List all Email Accounts
4. Exit
Enter your selection: 4
Thank you for using AYCLOGIC Email System.