home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list6_4.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  659b  |  31 lines

  1.    /* Demonstrates nested while statements */
  2.  
  3.    #include <stdio.h>
  4.  
  5.    int array[5];
  6.  
  7.    main()
  8.    {
  9.       int ctr = 0,
  10.           nbr = 0;
  11.  
  12.       printf( "This program prompts you to enter 5 numbers\n");
  13.       printf( "Each number should be from 1 to 10\n");
  14.  
  15.       while ( ctr < 5 )
  16.       {
  17.           nbr = 0;
  18.           while ( nbr < 1 || nbr > 10 )
  19.           {
  20.               printf( "\nEnter number %d of 5: ", ctr + 1 );
  21.               scanf( "%d", &nbr );
  22.           }
  23.  
  24.           array[ctr] = nbr;
  25.           ctr++;
  26.       }
  27.  
  28.       for( ctr = 0; ctr < 5; ctr++ )
  29.          printf( "\nValue %d is %d", ctr + 1, array[ctr] );
  30.   }
  31.