PSEUDOCODIGO
INICIO
float n, I, x = 0.0;
PRINT("Introduzca un numero");
READ(n)
if (n <>
{
PRINT("Introduzca valores mayores que 2");
}
else if (n > 2)
{
for (I = 2; I <= n; I = I + 2)
{
PRINT(I)
x = x + I;
}
PRINT("La suma de los numeros pares es: {0}", x);
{
}
}
FINAL
CONSOLA
double n, I, x = 0.0;
Console.WriteLine("Introduzca N numero");
n = double.Parse(Console.ReadLine());
if (n <> 2)
{
for (I = 2; I <= n; I = I + 2) { Console.Write("\n{0}", I); x = x + I; } Console.WriteLine("\n\nLa suma de los numeros pares es {0}", x); { } } Console.ReadKey();
VISUAL
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double n, I, x = 0.0;
n = int.Parse(textBox1.Text);
if (n <> 2)
{
for (I = 2; I <= n; I = I + 2) { listBox1.Items.Add("" + I.ToString()); x = x + I; } textBox2.Text = ("La suma de los numeros pares es " + x.ToString()); { } } } }
No hay comentarios:
Publicar un comentario