Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
%Clearing the screen and workspaceclc;
clear;
%Defining empty strings
A1='';
A2='';
A3='';
A4='';
color='';
%Getting input from the user and checking if they entered correct
%information
prompt1='Please enter A1 allele (Brown or Blue): ';
prompt2='Please enter A2 allele (Brown or Blue): ';
prompt3='Please enter A3 allele (Green or Blue): ';
prompt4='Please enter A4 allele (Green or Blue): ';
brown=0;
blue=0;
green=0;
test1=0;
test2=0;
test3=0;
test4=0;...