Answer to Question #9069 in C# for prene
Create a c# console application to enter the name and mark of students using a 2d array
1
2012-05-09T10:57:26-0400
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Question9069
{
class Program
{
static void Main(string[] args)
{
string [,]namemark=new string[10,10];
Console.Write("Enter name:");
namemark[0,0] = Console.ReadLine();
Console.Write("Enter mark:");
namemark[0,1] = Console.ReadLine();
}
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C#
Comments
Leave a comment