Cpp/Exámenes Resueltos (Segundo Semestre)/Junio2016_1/Tema.cpp

21 lines
420 B
C++
Raw Normal View History

2019-06-20 13:06:16 +02:00
#include "Tema.h"
using namespace std;
bool cargar(tTema& tema, ifstream& archivo) {
bool carga = false;
if (!archivo.fail()) {
archivo >> tema.titulo;
archivo >> tema.interprete;
archivo >> tema.segundos;
carga = true;
}
return carga;
}
void mostrar(tTema& tema) {
cout << right << setw(7) << tema.titulo
<< setw(15) << tema.interprete
<< setw(10) << tema.segundos << " seg.";
}