Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
List Array
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //Your code goes here Random Rand = new Random(); Console.WriteLine("Hello, world!"); List<int>[] opQ = new List<int>[10]; for (int i = 0; i < 10; i++){ opQ[i] = new List<int>(); for (int j = 0; j < 10; j++){ opQ[i].Add(Rand.Next(1,100)); } } for (int i = 0; i < 10; i++){ foreach (int value in opQ[i]) { Console.Write(value + " "); } Console.WriteLine(); } } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Volatile madness
Numeric to graphical output using string extension method
Find smallest and largest integers in unsorted array
Function Tester
The abstract factory design pattern implemented in c# using generics.
C# Bubble Sort
a
Regex - Leading zeros
biswa
Recursion
stackse - search stackoverflow differently
Please log in to post a comment.