20091021

PRACTICA 7.2 CALCULO Y SUMA DE NUMEROS PAR DE 2 HASTA N, NUMEROS.

pseudocodigo.
inicio
double N, I, x = 0.0

print "Introduzca N numero"
Read N
if (N <0 to 2) step N++
else if (N > 2)
{
for (I = 2 to I <= N) step I = I + 2
{
print("\", I)
x = x + I;
}

print "La suma de los numeros pares es ", x
{

fin.










Diseñe un programa que le permita leer un numero N par, y calcule e imprima la suma de los números pares del 2 hasta el numero leído, si el numero leído es menor que 2, debe imprimir un mensaje de error.




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

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double N, I, x = 0.0;

Console.WriteLine("Introduzca N numero");
N = double.Parse(Console.ReadLine());

if (N<0;n=0;n++)>

}

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



No hay comentarios:

Publicar un comentario