Answer to Question #290261 in Java | JSP | JSF for Bjoy

Question #290261

Using Loop Statement, create a program that will be able to display student information such as, last name, first name, middle name, address, contact number, date of birth: mm/dd/yyyy.




1
Expert's answer
2022-01-24T15:29:03-0500
public class Main {
    public static void main(String[] args) {
        String[] studentInformation = {"Adams", "Tom", "Tim", "Planet Earth", "555-555-555", "01/01/1970"};
        for (int i = 0; i < studentInformation.length; i++) {
            System.out.println(studentInformation[i]);
        }
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS