//Count 5, 10, 15, 20, 25, 30, 35, 40, 45 #include using namespace std; void main() { int n; //used to 'drive' the loop for(n=5; n<50; n+=5) //count by 5 cout<