结构数组示例
本文关键字:数组 结构 | 更新日期: 2023-09-27 18:31:10
我对 C# 中的结构有点陌生。
我的问题说:
编写一个控制台应用程序,用于接收一组学生的以下信息: 学生证,学生姓名,课程名称,出生日期.. 应用程序还应该能够显示正在输入的信息。 使用结构实现这一点。
我来到这里——>
struct student
{
public int s_id;
public String s_name, c_name, dob;
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter StudentId, StudentName, CourseName, Date-Of-Birth");
s_id = Console.ReadLine();
s_name = Console.ReadLine();
c_name = Console.ReadLine();
s_dob = Console.ReadLine();
student[] arr = new student[4];
}
}
在此之后请帮助我..
你已经开始了 - 现在你只需要填充数组中的每个student
结构:
struct student
{
public int s_id;
public String s_name, c_name, dob;
}
class Program
{
static void Main(string[] args)
{
student[] arr = new student[4];
for(int i = 0; i < 4; i++)
{
Console.WriteLine("Please enter StudentId, StudentName, CourseName, Date-Of-Birth");
arr[i].s_id = Int32.Parse(Console.ReadLine());
arr[i].s_name = Console.ReadLine();
arr[i].c_name = Console.ReadLine();
arr[i].s_dob = Console.ReadLine();
}
}
}
现在,只需再次迭代并将这些信息写入控制台。我会让你这样做,我会让你尝试制作任何数量的学生,而不仅仅是 4 个。
给定结构的实例,设置值。
student thisStudent;
Console.WriteLine("Please enter StudentId, StudentName, CourseName, Date-Of-Birth");
thisStudent.s_id = int.Parse(Console.ReadLine());
thisStudent.s_name = Console.ReadLine();
thisStudent.c_name = Console.ReadLine();
thisStudent.s_dob = Console.ReadLine();
请注意,此代码非常脆弱,因为我们根本不检查用户的输入。 而且用户不清楚您希望在单独的行上输入每个数据点。