public class aboutMe
{
public static void main(String[] args)
{
String name = "Maleah Weathersby";
int age = 19;
String occupation = "CS student at the University of Georgia";
String interests = "web development, car games, and nature";
System.out.println("Hello, I'm " + name + "!");
System.out.println("I am " + age + " years old.");
System.out.println("I am a " + occupation + ".");
System.out.println("Some of my interests include: " + interests + ".");
System.out.println("Nice to meet you!");
}
}
public class aboutMe
{
public static void main(String[] args)
{
String name = "Maleah Weathersby";
int age = 19;
String occupation = "CS student at the University of Georgia";
String interests = "web development, car games, and nature";
System.out.println("Hello, I'm " + name + "!");
System.out.println("I am " + age + " years old.");
System.out.println("I am a " + occupation + ".");
System.out.println("Some of my interests include: " + interests + ".");
System.out.println("Nice to meet you!");
}
}