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#を始めたばかりなので、まずは基本的なことを学びたいと思っています。