Beispiel #1
0
 static void Main(string[] args)
 {
     Humano = new Humano(18, "Lauane", 3, 60, "8645437558");
     Humano.Reproduz();
     Humano.Sorri();
     Humano.Comunica();
     Humano.Amamenta();
     Humano.Locomove();
     Cachorro Cocota        = new Cachorro();
     Tubarão  TubarãoGrande = new Tubarão();
     Pato     Patinha       = new Pato();
     Peixe    Peixinha      = new Peixe();
Beispiel #2
0
 static void Main(string[] args)
 {
     {
         Pato     DonaldDuck = new Pato( );
         Tubarão  BabyShark  = new Tubarão( );
         Cachorro DougDog    = new Cachorro( );
         Humano   Human      = new Humano(15, 48, "Tô cansado", 8, "123456789-00");
         Human.Nasce();
         Human.Cresce(3);
         Human.Amamenta();
         Human.Comunica();
         Human.Sorri();
         Human.Reproduz();
         Human.Locomove();
         Human.Morre();
     }
 }
Beispiel #3
0
        //Two hundred degrees
        //That's why they call me Mister Fahrenheit
        //I'm traveling at the speed of light ♪
        static void Main(string[] args)
        {
            Humano Jotaro = new Humano(17, 82, "ORAORAORAORAORAORA", 1079252850, "StarPlatinum");

            Jotaro.Cresce(4);
            Jotaro.Nasce();
            Jotaro.Reproduz();
            Jotaro.Morre();
            Jotaro.Locomove();
            Jotaro.Comunica();
            Jotaro.Amamenta();

            Pato Donald = new Pato();

            Tubarão Red = new Tubarão();

            Peixe BacalhauAlSpaghetti = new Peixe();

            Cachorro Pluto = new Cachorro();

            Console.ReadKey();
        }
Beispiel #4
0
		static void Main (string[] args)
		{
			Tubarão babyshark = new Tubarão();
			babyshark.Morre();
		}