// countDown6.cpp
// Displays the integers from 10 down to 1, in a row.
// Uses do/while loop.

#include <iostream>

int main()
{
   int count = 10;
   do  {
      cout << "   "  << count;
      count--;
   } while ( count >= 1 );
   cout << endl;
   return 0;
}  // function main