New 8

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

using System;

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

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] niz = { 1, 2, 3, 4, 5 };
int zbir = 0;
for (int i = 0; i < niz.Length; i++)
{
zbir += niz[i];
Console.WriteLine(niz[i]);
}
Console.WriteLine(zbir);
Console.ReadLine();
}
}
}

You might also like