/***************************************************************************** * Displays the factors of an inputed integer * * Inputed: an int * * Outputed: (see above). * * Written: November 14, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Ronald Roberts //Program 44 //14NOV01 #include #include #include int main(){ int i; int num; double divo; cin>>num; cout<<"Factors are: "; for (i=1; i<=num; i++) { divo=num/i; if (divo*i==num) { cout<