//Name: Christine Cloma //Purpose: To determine the highest and lowest among 3 numbers. #include #include void main() { clrscr(); int n1,n2,n3,smallest,largest; //First, asked the user for the first number printf("Please Enter the first number: "); scanf("%d", &n1); //Then, assign n1 as smallest and largest number smallest=n1; largest=n1; //Second, asked the user for the second number printf("Please Enter the second number: "); scanf("%d", &n2); //If the smallest number is greater than n2, assign n2 as the smallest //If the largest number is less than n2, assign n2 as the largest if(smallest>n2) smallest=n2; if(largestn3) smallest=n3; if(largest