lunes, 4 de marzo de 2013

PROGRAMACIÓN A OBJETOS


1._HOLA MUNDO

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication3
{
    public partial class ejemplo : Form
    {
        public ejemplo()
        {
            InitializeComponent();
        }

        private void btnhola_Click(object sender, EventArgs e)
        {
            this.txthola.text  =  "hola mundo";

        }
    }
}
2._Suma de dos numeros

using System.Data;
namespace Suma
{
    public partial class Evaluacion : Form
    {
        double suma;
{
InitializeComponent();
        }
private void btniniciar_Click(object sender, EventArgs e)
        {
           

suma = double.Parse(this.txtSuma1.Text) + double.Parse(this.txtSuma2.Text);
            this.txtSumatotal.Text = suma.ToString();
}


3._SUMA, RESTA, DIVICIÓN Y MULTIPLICACIÓN DE DOS NUMEROS

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
        double suma;
        double resta;
        double multiplicacion;
        double divición;
        public Form1()
        {
            InitializeComponent();
        }

        private void btnsuma_Click(object sender, EventArgs e)
        {
            suma = double.Parse(this.txtsuma1.Text) + double.Parse(this.txtsuma2.Text);
            this.txttotalsuma.Text = suma.ToString();

        }

        private void btnresta_Click(object sender, EventArgs e)
        {
            resta = double.Parse(this.txtresta1.Text) - double.Parse(this.txtresta2.Text);
            this.txttotalresta.Text = resta.ToString();

        }

        private void btnmult_Click(object sender, EventArgs e)
        {
            multiplicacion = double.Parse(this.txtmult1.Text) * double.Parse(this.txtmult2.Text);
            this.txttotalmult.Text = multiplicacion.ToString();

        }

        private void btndivid_Click(object sender, EventArgs e)
        {
            divición = double.Parse(this.txtdivid1.Text) / double.Parse(this.txtdivid2.Text);
            this.txttotaldivid.Text = divición.ToString();

        }
    }
}
4._Sueldo_Quincenal
public class Empleado
{
private double pagodiario;
private double diastrabajados;
//constructor
public empleado
{
this.pagodiario = 0;
this.diastrabajados = 0;
public double Pagodiario;
{
get ( return this.pagadiario )
set ( this.pagodiario = value )
}
public double Diastrabajados;
{
get ( return this.diastrabajados )
set ( this.diastrabajados )
}
public double Sueldoquincenal()
{
double Total;
int Bono = 400;
if ( this.diastrabajados > 13)
return  Total = this.pagadiario * this.diastrabajados + <Bono;
{
else
{
return total = this.pagodiario * this.diastrabajados;
}
}
}



BTN RESULTADO
Empleado objeto = empleado();
Objeto Pagodiario = double.Parse(txt.Pagodiario.Text);
Objeto Diastrabajados = double.Parse(txt.Diastrabajados.Text);
this.txtSueldoquincenal Text = Obejto Sueldoquincenal; ToyString "F3";

5._Convertir_Binario_a_Decimal

class Transformar
    {
        //DECLARACION DE VARIABLES
        private int _intNumero;
        private string _strNumbin;

        //ATRIBUTOS NUMERO Y NUMBIN
        public int Numero
        {
            get { return _intNumero; }
            set { _intNumero = value; }
        }

        public string Numbin
        {
            get { return _strNumbin; }
            set { _strNumbin = value; }
        }

        //METODO QUE TRASNFORMA EL NUMERO A BINARIO
        public void valorbinario()
        {
            //DECLARACION DE LAS VARIABLES DE UTILIZAR
            long nume = _intNumero;
            string agrebin = "";
            string bin = "";

            //CREACION DEL CICLO FOR
            for (long i = nume; nume > 0; i--)
            {
                //VERIFICA QUE EL RESIDUO DEL NUMERO SE IGUAL A CERO
                if (nume % 2 == 0)
                {
                    nume = nume / 2;
                    agrebin = "0";
                }
                else
                {
                    nume = nume - 1;
                    nume = nume / 2;
                    agrebin = "1";
                }

                bin = agrebin + bin;
            }
            _strNumbin = bin;
        }
    }
            
}

6._Contador_de_Clics

using System;

namespace Contador_de_Clics
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
          
        }

        private void button1_Click(object sender, EventArgs e)
        {
            double num;
            num = double.Parse(textBox1.Text);
            this.textBox1.Text = " "+ (num+1) ;
          

        }
      

        private void button2_Click(object sender, EventArgs e)
        {
            int num;
            num = 0;
            this.textBox1.Text = "  " +num ;
        }
    }
}

7._Virus_Simulación


using System;


namespace Virus_Simulación
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            TimeVirus.Enabled = true;
        }

        private void TimeVirus_Tick(object sender, EventArgs e)
        {
           
            MessageBox.Show("Haz caido, esto es un virus"  + (txtNombre.Text) , "Virus en Proceso", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }

        private void txtNombre_TextChanged(object sender, EventArgs e)
        {
           
        }
    }
}

8._División

using System.Data;
namespace División
{
    public partial class Evaluacion : Form
    {
        double división;
{
InitializeComponent();
        }
private void btniniciar_Click(object sender, EventArgs e)
        {
           

división = double.Parse(this.txtSuma1.Text) / double.Parse(this.txtSuma2.Text);
            this.txtSumatotal.Text = suma.ToString();
}


9._Multiplicación

using System.Data;
namespace multiplicación
{
    public partial class Evaluacion : Form
    {
        double multiplicación;
{
InitializeComponent();
        }
private void btniniciar_Click(object sender, EventArgs e)
        {
           

multiplicación = double.Parse(this.txtSuma1.Text) * double.Parse(this.txtSuma2.Text);
            this.txtSumatotal.Text = suma.ToString();
}

10._Resta
using System.Data;
namespace Resta
{
    public partial class Evaluacion : Form
    {
        double resta;
{
InitializeComponent();
        }
private void btniniciar_Click(object sender, EventArgs e)
        {
           

resta = double.Parse(this.txtSuma1.Text) - double.Parse(this.txtSuma2.Text);
            this.txtSumatotal.Text = suma.ToString();
}


No hay comentarios:

Publicar un comentario