Hi guys can you guys help me cut this line into three lines because it is too long right now. I've tried using \n and endl but it ends up having errors when i compile it.
cout << "The average rainfall for "<<month1<<, "<<month2<<" and "<<month3<<" is: " << average << " inches"<< endl;
I need to seperate that into three lines so it displays like this.
The average rainfall for
January, February, and March
is: ____ inches.

