Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Enter two integers. Space delimited please: ");
|
||||
string s = Console.ReadLine();
|
||||
|
||||
int[,] myArray=new int[(int)s[0],(int)s[2]];
|
||||
myArray[0, 0] = 2;
|
||||
Console.WriteLine(myArray[0, 0]);
|
||||
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue