View difference between Paste ID: y9uHKGCU and i1RNbGDj
SHOW: | | - or go back to the newest paste.
1
using System;
2
3
namespace ConsoleApp4
4
{
5
    class Program
6
    {
7
        static void Main(string[] args)
8
        {
9
            Random rnd = new Random();
10
            int[] pinakas = new int[rnd.Next(0, 1000000)];
11
            int sum = 0;
12
            
13
            for (int i = 0; i < pinakas.Length; i++)
14
            {
15
                pinakas[i] = rnd.Next(0, 100000000);
16
                Console.WriteLine("Sth thesi {0} o pinakas exei ton arithmo: " + pinakas[i], i);
17
                sum = sum + pinakas[i];
18
            }
19
20
            Console.WriteLine("H souma einai: " + sum);
21
            
22
        }
23
    }
24
}