/***************************************************************************** * Outputs 'Your Name' num number of times. * * Inputed: num. * * Outputed: 'Your Name' repeated num times. * * Written: October 23, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 32 #include #include #include int main() { int num=0, i=1; cout<<"Please enter an integer: "; cin>>num; for (i=1;i<=num;i=i+1) { cout<