Answer:
-5.25
Step-by-step explanation:
-3(-a+2)=7a+15
=>3a-6=7a+15
=>-15-6=7a-3a
=>-21=4a
=>a=-21/4=-5.25
hope this helps please mark as brainliest:)
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>
Answer:
1/7
Step-by-step explanation:
Divide each number by 5.
5/5=1
35/5=7
Answer:
B=55
Step-by-step explanation:
2x+3x+2x+5=180
7x=175
X=25
B= 2x+5
B=2*25 +5
B=55