Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp4
- {
- class Program
- {
- static void Main(string[] args)
- {
- int[] pinakas = new int[100000000];
- Random rnd = new Random();
- for (int i = 0; i < 100000000; i++)
- {
- pinakas[i] = rnd.Next(0, 100000000);
- }
- for (int i = 0; i < 100000000; i++)
- {
- Console.ForegroundColor = (ConsoleColor)rnd.Next(0, 14);
- Console.Write(pinakas[i]);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment