martes, 19 de noviembre de 2013

CUADRANTE CON PROCEDIMIENTOS


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace PtoPlano
{
    class PtoPlano1
    {
        private int x, y;
 
        public void Inicializar()
        {
            string linea;
            Console.Write("TECLEA EL VALOR DE LAS X:  ");
            linea = Console.ReadLine();
            x = int.Parse(linea);
            Console.Write("TECLEA EL VALOR DE LAS Y:  ");
            linea = Console.ReadLine();
            y = int.Parse(linea);
        }
 
        public void Cuadrante()
        {
            if (x > 0 && y > 0)
            {
                Console.Write("EL PUNTO SE ENCUENTRA EN EL PRIMER CUADRANTE");
            }
            else
            {
                if (x > 0 && y < 0)
                {
                    Console.Write("EL PUNTO SE ENCUENTRA EN EL CUARTO CUADRANTE");
                }
                else
                {
                    if (x < 0 && y > 0)
                    {
                        Console.Write("EL PUNTO SE ENCUENTRA EN EL SEGUNDO CUADRANTE");
                    }
                    else
                    {
                        Console.Write("EL PUNTO SE ENCUENTRA EN EL TERCER CUADRANTE");
                    }
                }
            }
        }
 
        static void Main(string[] args)
        {
            PtoPlano1 pto1 = new PtoPlano1();
            pto1.Inicializar();
            pto1.Cuadrante();
            Console.ReadKey();
        }
    }
}

No hay comentarios:

Publicar un comentario