remover.cc 224 B

123456789101112
  1. #include "remover.hh"
  2. void remover(conexao c){
  3. string isbn = digitarstring("ISBN");
  4. bool b = c.remover(isbn);
  5. if(b == false){
  6. cout << "Erro" << endl;
  7. } else {
  8. cout << "\nRemovido com sucesso" << endl;
  9. }
  10. }