Resta de 2 números enteros en - C# aplicación

Realizar una aplicación para restar dos números enteros.



CÓDIGO FUENTE

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

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

        private void button1_Click(object sender, EventArgs e)
        {
            int n1 = int.Parse(textBox1.Text);
            int n2 = int.Parse(textBox2.Text);

            int resta = n1 - n2;

            textBox3.Text = resta.ToString();

        }


        private void button2_Click(object sender, EventArgs e)
        {
            textBox1.Clear();
            textBox2.Clear();
            textBox3.Clear();
            textBox1.Focus();

        }


        private void button3_Click(object sender, EventArgs e)
        {
            Close();
        }


    }
}

Suma de 2 números C# - Aplicación

Realizar una aplicación para sumar 2 números enteros.


CÓDIGO FUENTE


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

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

        private void button1_Click(object sender, EventArgs e)
        {
            int n1 = int.Parse(textBox1.Text);
            int n2 = int.Parse(textBox2.Text);
            
            int suma = n1 + n2;
            
            textBox3.Text = suma.ToString();

        }


        private void button2_Click(object sender, EventArgs e)
        {
            textBox1.Clear();
            textBox2.Clear();
            textBox3.Clear();
            textBox1.Focus();

        }

        
        private void button3_Click(object sender, EventArgs e)
        {
            Close();   
        }
    }
}


Realizar un programa para convertir grados Celsius a Fahrenheit



CODIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejemplo_18
{
    class Program
    {
        static void Main(string[] args)
        {
           Console.WriteLine("Ingresa Grados Centigrados");
         
           double c = Convert.ToDouble(Console.ReadLine());
         
           double f = (c * 9 / 5) + (32);
         
           Console.WriteLine(c + "ºC equivale a " + f + "ºF");
         
           Console.ReadLine();
        }
    }
}






Matriz de N x M llenado con numeros aleatorios - C#

Realizar un programa que ingrese una matriz de N x M con números generados aleatoriamente.



CODIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejemplo_17
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Matriz de:");
            int a = int.Parse(Console.ReadLine());

            Console.WriteLine("Matriz por:");
            int b = int.Parse(Console.ReadLine());

            int[,] bidimencion;
            bidimencion = new int[a, b];

            Random numero = new Random();

            // Llenando de la matriz con numero aleatorios entre 1 y 100
            for (int i = 0; i < a; i++)
            {
                for (int j = 0; j < b; j++)
                {

                    bidimencion[i, j] = numero.Next(1, 100);
                }
            }
            Console.WriteLine("Impresion de la matriz");
         
            // Impresion de la matriz
            for (int i = 0; i < a; i++)
            {
                for (int j = 0; j < b; j++)
                {
                    Console.Write(bidimencion[i, j]);
                    if (j + 1 == b) { Console.WriteLine(); } else { Console.Write(" - "); }
                }
            }
            Console.ReadKey(true);
        }
    }
}



Área del triangulo - C#

Realizar un programa para calcular el área de un triangulo en C#


CODIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejemplo_15
{
    class Program
    {
        static void Main(string[] args)
        {
            double b, h, a;
            Console.WriteLine("Ingresa base");
            // ENTRADA
            b = Convert.ToDouble(Console.ReadLine());
            Console.WriteLine("Ingresa altura");
            h = Convert.ToDouble(Console.ReadLine());
            // PROCESO
            a = b * h / 2;
            // SALIDA
            Console.WriteLine("El área del triangulo es");
            Console.WriteLine(a);
            Console.ReadLine();
        }
    }
}

 CLIC PARA DESCARGAR



Año bisiesto

Realizar un programa para mostrar si un año es bisiesto o no .


CODIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejemplo_14
{
    class Program
    {
        static void Main(string[] args)
        {
            int a;
            Console.WriteLine("Ingrese solo el año");
            a = Convert.ToInt32(Console.ReadLine());
            if (a % 4 == 0 && (a % 100 != 0 || a % 400 == 0))
            {
                Console.WriteLine("El año " + a + " Si es bisiesto ");
            }
            else
            {
                Console.WriteLine("El año " + a + " No es bisiesto ");
            }
            Console.ReadLine();
        }
    }
}



DESCARGAR CODIGO FUENTE

en mantenimiento

Calcular el perímetro de un rectángulo - C#

Realizar un programa para calcular el perímetro de un rectángulo - C#


CÓDIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejemplo_13
{
    class Program
    {
        static void Main(string[] args)
        {
           
            double largo, ancho, perimetro;

            // ENTRADA
            Console.WriteLine("Ingresa el largo del rectangulo");
            largo = Convert.ToDouble(Console.ReadLine());
            Console.WriteLine("Ingresa el ancho del rectangulo");
            ancho = Convert.ToDouble(Console.ReadLine());
            
            // PROCESO
            perimetro = (2 * ancho) + (2 * largo);
            
            // SALIDA
            Console.WriteLine("El perímetro del rectangulo es");
            Console.WriteLine(perimetro);
            Console.ReadLine();
        }
    }
}


DESCARGAR


Realizar un programa para mostrar si un número es par o impar - C#

Realizar un programa para mostrar si un número es par o impar



CODIGO FUENTE

using System;
using System.Collections.Generic;
using System.Text;

namespace Ejercicio_11
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Ingrese un número");
            int a = Convert.ToInt16(Console.ReadLine());
            if (a % 2 == 0)
            {
                Console.WriteLine(a + " es un número par");
            }
            else
            {
                Console.WriteLine(a + " es un número impar");
            }
            Console.ReadLine();
        }
    }
}

RESULTADO



Popular Posts