Skip to content
View 6iovani's full-sized avatar

Block or report 6iovani

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
6iovani/README.md
//About me

public class Information {
  private String name, school, location, major;
  private String[] languages, hobbies;

public Information(String name, String school, String location,
    String major, String[] languages, String[] hobbies) {
    this.name = name;
    this.school = school;
    this.location = location;
    this.major = major;
    this.languages = languages;
    this.hobbies = hobbies;
}

public static void main(String[] args) {
    Information info = new Information(
        "Giovani Martins",
        "Bridgewater State University",
        "Brockton, MA",
        "Computer Science",
        new String[]{"Java", "Python", "HTML", "CSS"},
        new String[]{"Fitness", "Reading", "Cinematography", "GameDev"}
    );

     System.out.printf(
        "Name: %s\nSchool: %s\nLocation: %s\nMajor: %s\nLanguages: %s\nHobbies: %s\n",
        info.name, info.school, info.location, info.major,
        String.join(", ", info.languages),
        String.join(", ", info.hobbies));
    }
}

Popular repositories Loading

  1. pythonProject5 pythonProject5 Public

    Python 1

  2. Project6 Project6 Public

    Python 1

  3. gmartinsProject1 gmartinsProject1 Public

    first comp 151 project

    Python

  4. pythonProject2 pythonProject2 Public

    Python

  5. pythonProject3 pythonProject3 Public

    Python

  6. pythonProject4 pythonProject4 Public

    Python