Question

please solve

CHALLENGE ACTIVITY 5.3.3: While loop: Insect growth. Given positive integer numinsects, write a while loop that prints that n

0 0
Add a comment Improve this question Transcribed image text
Answer #1

// code is already in cpp so completing it in the same language

#include <iostream>
using namespace std;

int main(){
int numInsects;

cin >> numInsects;
  
while(numInsects<200)
{
cout<<numInsects<<" ";
numInsects=2*numInsects;
}
return 0;
}


input 16 16 32 64 128 ...Program finished with exit code o Press ENTER to exit console.

Add a comment
Know the answer?
Add Answer to:
please solve CHALLENGE ACTIVITY 5.3.3: While loop: Insect growth. Given positive integer numinsects, write a while...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT