int main(viod)
{
int height=5;
while(height<8)
{
print("the statement evaluted to true!");
height+1;
}
return 0;
assuming libraries are included how many times will sentence print out?
1
Expert's answer
2013-01-29T11:52:13-0500
int height = 5 while(height<8) //5<8 true { print("the statement evaluted totrue!");//first time height+1; //height = 6 }
Comments
write a program in c++ calculate the area of circle write a program in c++ to demonstrat the use of inheritans
Leave a comment