/***************************************************************************** * Determines if three integers are in ascending order. * * Inputed: a, b, c (three integers). * * Outputed: (A statement concluding if they are in ascending order). * * Written: October 4, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 17 //04OCT01 #include #include #include int main() { //declaration of variables int a=0, b=0, c=0, a1=0, b1=0, c1=0; //user instructions and user input cout<<"This program computes 2 sets of 3 numbers and"<>a>>b>>c; //cal code if(a