namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Not.Text =
(Convert.ToInt32(quiz1per.Text)) * (Convert.ToInt32(quiz1poi.Text)) +
(Convert.ToInt32(quiz2per.Text)) * (Convert.ToInt32(quiz2poi.Text)) +
(Convert.ToInt32(odev1per.Text)) * (Convert.ToInt32(odev1poi.Text)) +
(Convert.ToInt32(odev2per.Text)) * (Convert.ToInt32(odev2poi.Text)) +
(Convert.ToInt32(vizeper.Text)) * (Convert.ToInt32(vizepoi.Text)) +
(Convert.ToInt32(finalper.Text)) * (Convert.ToInt32(finalpoi.Text));
}
}
}
当我到达最后一个分号时,我在将 int 转换为 string 时遇到了问题。我刚开始学习C#,我想先学习基本的东西。