1 pound = 16 ounces
So we have 85 lbs and 2 oz, that is if we convert them to ounces:
85(16) + 2 = 1362 oz
so we have 1362 oz total due to the conversion factor stated above, now we only need to divide:
1362/6 = 227
that is 227 oz
or if we want the result in pounds (lbs), we can by dividing again by 16
227/16 = 14.19 lbs
Answer:
13 u²
Step-by-step explanation:
Answer:
The first and third options are correct so choose both
Step-by-step explanation:
Answer:
true!
Step-by-step explanation:
because if we havent got lines, colors , and textures
how could shapes be created?
<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>