//for loop to print 10 9 8 7 6 5 4 3 2 1 Blast off! //uses for, -- #include using namespace std; void main() { int n; //used to 'drive' the loop for(n=10; n>=0; n--) //count BACKWARDS { cout<