-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
44 lines (34 loc) · 1.05 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _15_09_15
{
class Program
{
static void Main(string[] args)
{
/*Libro[] libros;
libros = new Libro[10];
libros[0] = new Libro();*/
Libro miLibro=new Libro();
Libreria unaLibreria = new Libreria();
int indice;
Libro miOtroLibro = new Libro(1111,"Brunoooooooooo");
if (unaLibreria.agregarLibro(miLibro))
{
Console.WriteLine("El libro se ingresó");
}
unaLibreria = unaLibreria + miOtroLibro;
if (miLibro == miOtroLibro)
{
Console.WriteLine("Son iguales");
}
else
Console.WriteLine("No son iguales");
//unaLibreria.agregarLibro(miLibro);//agrega otro libro. prueba indice. ah re loco!
indice = unaLibreria.indiceLibre();
Console.WriteLine(indice);
}
}
}