/***************************************************************************** * Outputs the first 18 multiples of 2 and their product. * * Inputed: N/A * * Outputed: 2*i, product. * * Written: November 8, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 38 //08NOV01 #include #include #include int main() { int i=0; double product=1; for (i=1; i<=18; i++) { cout<<2*i<<", "; product=product*(2*i); } cout<<"The Product is: "<