使用c#写一个程序为先输入学号再输入名字再显示确认
时间: 2024-09-18 07:07:41 浏览: 32
在C#中,你可以使用控制台应用程序(Console Application)来编写这样一个简单的程序。下面是一个示例代码:
```csharp
using System;
class Student
{
public int ID { get; set; }
public string Name { get; set; }
public void DisplayConfirmation()
{
Console.WriteLine($"学号: {ID}, 姓名: {Name}");
}
}
class Program
{
static void Main(string[] args)
{
// 获取用户输入
Console.Write("请输入学号: ");
int id = Convert.ToInt32(Console.ReadLine());
Console.Write("请输入姓名: ");
string name = Console.ReadLine();
// 创建学生对象并设置属性
Student student = new Student();
student.ID = id;
student.Name = name;
// 显示确认信息
student.DisplayConfirmation();
// 等待用户按下任意键继续
Console.ReadKey();
}
}
```
在这个程序中,我们首先定义了一个`Student`类,它有两个属性`ID`和`Name`,以及一个用于显示确认信息的方法`DisplayConfirmation`。然后,在`Main`函数中,通过`Console.ReadLine()`获取用户输入,创建`Student`对象并设置属性值,最后调用`DisplayConfirmation`方法展示信息。
阅读全文