//Read in 3 numbers: find total, using a for loop #include using namespace std; void main(){ int num, total=0; int i; //we will use i to run the loop for(i=0;i<3;i++) { cout<<"Enter a number:"; cin>>num; total=total+num; } cout<<"Total="<