C#基本的输入与输出
一、在Window应用程序中
在WinForm(窗体)中,通过控件(Control)来表示:
- 如文本框(TextBox)、标签(Label)
- 如下拉框、图片框等。
- 示例:计算平方根
选择Window应用程序,利用窗体(form),在空间中选择相应的控件:
文本框(TextBox)表示输入,按钮(Button)表示发出的命令,再用一个标签(label)表示计算的结果。
代码如下:
private void button1_Click(object sender, EventArgs e)
{
double text = double.Parse(textBox1.Text);//解析textBox1(文本框中的字符串),double.Parse()代表将其解析为double类型。
double result = Math.Sqrt(text);//Math.Sqrt()代表数学函数求平方根,Math中包含许多复杂的数学公式。
label1.Text = result.ToString();//result为double,label1.text为字符串,利用ToString(),将其转变为字符串。
}
private void button1_MouseMove(object sender, MouseEventArgs e)
{
Random ran = new Random();
this.button1.BackColor = Color.FromArgb(ran.Next(255), ran.Next(255),
ran.Next(255));//指当鼠标移动到按钮上时,按钮背景颜色变化。
}
运行结果:
二、在控制台程序中
使用Console类
string s = “”;
ConSole.Write(“Please input a line:”);
s = Console.ReadLine();相当于C语言中的scanf()在控制台中输入。
Console.WriteLine(“You have entered:{0}”,s);其中{n}代表第n个数。
处理控制台I/O:
Console.ReadLine()
Console.Write(…);
Console.WriteLine(…);
Console.WriteLine(“a为{0},b为{1}”,a,b);
示例:
static void Main(string[] args)
{
String a = "";
String b = "";
Console.Write("请输入a:");
a = Console.ReadLine();
Console.Write("请输入b:");
b = Console.ReadLine();
Console.WriteLine("a为{0},b为{1}", a, b);
}
运行结果:
@梦幻泡沫