The command that would be given to execute a code that asks for input and runs it repeatedly until it has satisfied the condition is a do-while loop.
<h3>What is a Do While Statement?</h3>
This is a conditional statement that is used in programming to run a set of code and check the conditions set and commands to execute and finally terminates when the conditions are satisfied.
Therefore, based on the fact that a loop would be used, and the displayed text would be repeated many times, the do-while loop would be used for this program.
Read more about do-while statements here:
brainly.com/question/13089591
#SPJ1
Answer:
Clipboard
Explanation:
when we cut or copy a text ,it is stored into a temporary storage called clipboard . clipboard is a temporary storage where text or graphics cut/copied is stored until it is pasted .
Rainforests are generally considered a source of D. none of the above because you can get food, medicine and spices from rainforests. The plants in the rainforests have many medicinal properties.
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
int sum=0, num=5; //variables declaration and inicialization
while (sum<500){ //conditioning to do the sum up to 500
sum=sum+num; //actually sum process
cout << "The value is: "<<sum; //show the result in screen
};
return 0;
}