PROGRAMMING:Imitation practice
Imitate practice, write program, output three lines of information
Write the program to display three messages.
requirement:
Imitate the "reference code" to complete the title, please do not copy the reference code, manually enter the code in the development tool, and submit the code after it runs correctly;
Reference code
```
public class Main {
public static void main(String[] args) throws Exception {
System.out.println("Programming is fun!");
System.out.println("Fundamentals First");
System.out.println("Problem Driven");
}
}
```
###Input format:
nothing
###Output format:
Output three lines of information
###Input example:
Here is a set of inputs. For example:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
Programming is fun!
Fundamentals First
Problem Driven
```
answer:If there is no answer, please comment
Write the program to display three messages.
requirement:
Imitate the "reference code" to complete the title, please do not copy the reference code, manually enter the code in the development tool, and submit the code after it runs correctly;
Reference code
```
public class Main {
public static void main(String[] args) throws Exception {
System.out.println("Programming is fun!");
System.out.println("Fundamentals First");
System.out.println("Problem Driven");
}
}
```
###Input format:
nothing
###Output format:
Output three lines of information
###Input example:
Here is a set of inputs. For example:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
Programming is fun!
Fundamentals First
Problem Driven
```
answer:If there is no answer, please comment