/***************************************************************************** * Outputs all odd numbers less than 97 and greater than 14. * * Inputed: N/A * * Outputed: (see above). * * Written: October 23, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 33 #include #include #include int main() { int i; for (i=97; 15<=i && i<=97; i=i-1) { if (i%2==1) { cout<