Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all th
e non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0.
1 answer:
Answer:
Following are the statement in C++ Language is given below
total=0; // variable declaration
cin >> amount; // Read the input
while(amount >=0) //iterating the loop
{
if(amount>0) // checking condition
total=total+amount; // perform operation
}
Explanation:
Following is the description of the statement
- Declared a variable "total" and initialized with them 0 to them.
- Read the input in the "amount" variable by using cin.
- iterating the loop when the amount is greater then 0.
- Checking the condition if(amount>0) then adding the total variable and amount and storing them into the total variable.
You might be interested in
The application andy wants to use is adobe photoshop
I would go C because that way it gets her prepared to answer any techie questions they would have for her and would make her a better option.
Answer:
A data dashboard
Explanation:
Which formula contains an absolute cell reference? =SUM($B$7:$B$9)
Business intelligence can be used by managers in order to see how well their departments are. Now go and get that A+