程序中的输入和输出
1.在winform中
如文本框,标签
如下拉文件图片框
示例:计算平方根
private void button1_Click_1(object sender, EventArgs e){double a = double.Parse(textBox1.Text);double result = Math.Sqrt(a);label1.Text = result.ToString();}
解析整数,用int的Parse 或 int.Parse() 或 Parse() 或 int.Parse方法
2.在控制台应用程序中
使用Console类
string s=\”\”;
Console.Write(“please input a line”);
s=Console.Readline();
Console.WriteLine(“You have entered:{0}”,s);
Console.WriteLine(“a为{0},b为{1}”,a,b)
示例:AppLineInout.cs