12 lines
256 B
Java
12 lines
256 B
Java
package gaga_gmail_com;
|
|
|
|
public class Poetry {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
String line = "The Heav'ns and all the Constellations rung";
|
|
// Change the arguments:
|
|
System.out.print(line.substring(4, 11));
|
|
|
|
}
|
|
} |