Realizar un programa en consola para mostrar la serie de Fibonacci
C SHARP - C#
Serie de fibonacci - C# 2022
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.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.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
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
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();
}
}
}
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
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ejemplo1 { class suma { ...
-
Realizar un programa para mostrar la serie de Fibonacci CODIGO using System; using System.Collections.Generic; using System.Linq; us...
-
Realizar una aplicación para sumar 2 números enteros. CÓDIGO FUENTE using System; using System.Collections.Generic; using S...
-
Realizar un programa para calcular el área de un triangulo en C# CODIGO FUENTE using System; using System.Collections.Generic; usi...
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Eje...
-
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication7 { class Program { ...
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Eje...
-
Realizar un programa para mostrar si un año es bisiesto o no . CODIGO FUENTE using System; using System.Collections.Generic; using...
-
Realizar un programa para calcular el perímetro de un rectángulo - C# CÓDIGO FUENTE using System; using System.Collections.Gen...