if( choice == 2 )
{
std::cout << "Enter new weight: ";
std::cin >> weight_lbs;
std::cout << "New weight is " << weight_lbs << "lbs\n";
}
Assuming that weight_lbs has already been declared. Note, there's no validation there, either. There's nothing to stop the user from typing 'bananas' and the program accepting it.