#!/usr/bin/perl -w use strict; ORIGINAL: print " Welcome to the Casio-Maxim Quadrilateral Identification\n Algorithm. In order to identify said quadrilateral,\n you must have the coordinates of all 4 vertices.\n"; PROMPT: print " When you are ready to input your coordines, type\n 'ready.' Type anything else to exit the CMQIA.\n\n"; my $choice = ; if($choice =~ /ready/i) {goto MAXIM;} if($choice !~ /ready/i) {require "Unit6.pl"; system("Unit6.pl"); require "Unit6.pl"; goto ORIGINAL;} MAXIM: print "\nFor shape ABCD, in which point A has coordinates (X1, Y1), B has coordinates\n\n(X2, Y2), C has coordinates (X3, Y3), and D has coordinates (X4, Y4),\n\nX1 = "; my $AX = ; chomp $AX; …