20181017作业
…
作业1
实现以下效果
20181017作业…
代码
…
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
/*这是我的第一个C#应用程序
时间:2018/10/17
制作人:胡小雨
**/
class Program { static void Main(string[] args)
{
//在控制台台输出"*******************************************"
Console.WriteLine("*******************************************");
//在控制台输出"* 这是我的第一个C#应用程序 *"
Console.WriteLine("* 这是我的第一个C#应用程序 *");
//在控制台台输出"*******************************************"
Console.WriteLine("*******************************************");
//等待用户键盘输入
Console.Read();
}
}
}
…
作业2
实训指导:乘法计算器
…
代码
…
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1() { InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
float num1 = 0;
float num2 = 0;
float result = 0;
num1 = float.Parse(textBox1.Text); //将文本框输入的字符转换成数值
num2 = float.Parse(textBox2.Text);
result = num1 * num2;
textBox3.Text = result.ToString();//将数值转换成字符
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
}
}
}
…
效果
…
20181017作业20181017作业 20181017作业
20181017作业