Answer:
-11 x2 =-22 -2 =24
Step-by-step explanation:
Answer:
-3/4
Step-by-step explanation:
Move the 3x over to the side with the 3 so it will become a -3x now you have 4y=-3x+3 now you have to remove the 4 from the y so now you have y=-3/4x+3/4 so you slope will be -3/4
<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:
y = 15x + 8
Step-by-step explanation:
Hey there!
15x represents 15 times how many ever pizzas you order and 8 is for the delivery cost.
Hope this helps!
Answer:
48
Step-by-step explanation: