Electrical and Computer Engineering
14
of 23
UAH
CPE 112
More On Sentinel-
Controlled Loops
•
cin >> month >> day;
•
while
(!(month == 2 && day == 31))
•
{
•
cin >> month >> day;
•
.
•
.
•
.
•
}
•
•