Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // Created by Julio Tentor <jtentor@fi.unju.edu.ar>
- //
- #include <iostream>
- #include <iomanip>
- #include "Libro.h"
- Libro CreaunLibro();
- int main() {
- std::cout << "Clase Libro" << std::endl;
- Libro unlibro = CreaunLibro();
- std::cout << unlibro;
- return 0;
- }
- Libro CreaunLibro() {
- std::string titulo;
- std::string autor;
- std::string editorial;
- int anio;
- float precio;
- std::string buffer;
- std::cout << "Ingrese el Titulo...: ";
- std::getline(std::cin, titulo);
- std::cout << "Ingrese el Autor....: ";
- std::getline(std::cin, autor);
- std::cout << "Ingrese el Editorial: ";
- std::getline(std::cin, editorial);
- std::cout << "Ingrese el Año......: ";
- std::getline(std::cin, buffer);
- anio = std::stoi(buffer);
- std::cout << "Ingrese el Precio...: ";
- std::getline(std::cin, buffer);
- precio = std::stof(buffer);
- Libro libro = Libro(titulo, autor, editorial, anio, precio);
- return libro;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement