/**
- @class: TwoRockets.java
- @author: Derron Pierre
- @date: August 30, 2022
- @version: 1.0
- description: this program will display two coded rockets side by side. */
public class TwoRockets { public static void main(String [] args){ System.out.println(" / \ / \"); System.out.println(" / \ / \"); System.out.println("/ \ / \"); System.out.println("+------+ +------+"); System.out.println("| | | |"); System.out.println("| | | |"); System.out.println("+------+ +------+"); System.out.println("|United| |United|"); System.out.println("|States| |States|"); System.out.println("+------+ +------+"); System.out.println(" /\ /\"); System.out.println(" / \ / \"); System.out.println(" / \ / \");
} }