martes, 5 de noviembre de 2013

EJEMPLO DEL CICLO DE REPETICION FOR

Elabore un programa en c#, que haga la sumatoria del 1 al 5 y mande a pantalla el resultado (1+2+3+4+5) con el ciclo FOR.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace EstructuraRepetitivaFor
{
    class Program
    {
        static void Main(string[] args)
        {
            int x,sum;
             sum=0;
            for(x = 1; x<=5;x++)
             {
                sum=sum+x;
             }
            Console.WriteLine(“LA SUMATORIA DEL 1 AL 5 ES  “ +sum);
 
            Console.ReadKey();
        }
    }
}

No hay comentarios:

Publicar un comentario