Serie de fibonacci - C# 2022

 Realizar un programa en consola para mostrar la serie de Fibonacci


CODIGO FUENTE

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

namespace Ejercicio_1
{
    class Program
    {
        static void Main(string[] args)
        {

            Console.WriteLine("Ingrese un número entero ");
            int numero = Convert.ToInt32(Console.ReadLine());
            if (numero > 0)
            {
                String cadena = "";
                while (numero > 0)
                {
                    if (numero % 2 == 0)
                    {
                        cadena = "0" + cadena;
                    }
                    else
                    {
                        cadena = "1" + cadena;
                    }
                    numero = (int)(numero / 2);
                }
                Console.WriteLine(cadena);
            }
            else
            {
                if (numero == 0)
                {
                    Console.WriteLine("0");
                }
                else
                {
                    Console.WriteLine("Ingrese solo numeros positivos");
                }
            }
            Console.ReadLine();


        }
    }
}



CLIC PARA DESCARGAR PROYECTO

Leer 3 notas y calcular el promedio, además enviar mensaje si aprobó o no. La nota de aprobación es 10.5 - C#

 Ejemplo: 

Leer 3 notas y calcular el promedio, además enviar mensaje si aprobó o no. La nota de aprobación es 10.5 


using System;


namespace PromedioDe3Notas

{

    class PromedioDe3Notas

    {

        static void Main(string[] args)

        {

            double nota_1, nota_2, nota_3, promedio;

            Console.Write("Ingresa el valor de nota 1: ");

            nota_1 = double.Parse(Console.ReadLine());

            Console.Write("Ingresa el valor de nota 2: ");

            nota_2 = double.Parse(Console.ReadLine());

            Console.Write("Ingresa el valor de nota 3: ");

            nota_3 = double.Parse(Console.ReadLine());

            promedio=(nota_1+nota_2+nota_3)/3;

            if(promedio<10.5)

                Console.WriteLine("Desaprobado");

            else

             Console.WriteLine("Aprobado");

            Console.WriteLine("Valor de promedio: " + promedio);

            Console.WriteLine();

            Console.Write("Presiona una tecla para terminar . . . ");

            Console.ReadKey();

        }

    }

}

Ejemplo: Mostrar los números pares entre el 0 y el 100


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ejemplo_13
{
    class Program
    {
        static void Main(string[] args)
        {
            int i, impar = 0, par = 0;

            for (i = 1; i < 100; i++)
            {
                if (i % 2 == 0)
                {
                    Console.Write("{0}|", i);
                    par++;
                }
            }
            Console.Write("\n\nDel 0 al 100 hay {0} números pares y {1} impares\n\n", par, impar);

            Console.Read();
        }
    }
}


Ejemplo: Mostrar los números impares entre el 0 y el 100


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ejemplo_12
{
    class Program
    {
        static void Main(string[] args)
        {

            int i, impar = 0, par = 0;

            for (i = 0; i < 100; i++)
            {
                if (i % 2 != 0)
                {
                    Console.Write("{0}|", i);
                    impar++;
                }
            }

            Console.Write("\n\n");

            Console.Read();
        }
    }
}



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();
        }
    }
}






Popular Posts