public class Jannick {
private int age = 18;
private int height = 190;
private String gender = "boy";
private String color = "blue";
private String country = "Denmark";
public String[] getProfile() {
return new String[] {
"age = " + age,
"height = " + height,
"gender = " + gender,
"color = " + color,
"country = " + country
};
}
}
public class AboutMe {
public static void main(String[] args) {
String[] aboutMe = new Jannick().getProfile();
for(String information : aboutMe) {
System.out.println(information);
}
}
}
🦔
ok I pull up
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.