使用 Visual Basic 在 C# 中制作平均测试分数生成器
Using Visual Basic to Make Average Test Score Generator in C#
我正在尝试为接受三个整数输入并取平均值的作业创建一个计算器,然后 returns 将其提供给用户。我正在使用 Visual Basic(这是必需的)来制作 GUI。我在两件事上遇到了麻烦,首先,我无法让 aVer 除以 3,因为它不是整数,其次,我不知道如何在最后一个文本框中获得平均值的输出。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private string userInfo1;
private string userInfo2;
private string userInfo3;
private string aVer;
private string num1;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int aVer = 0;
aVer = Int32.Parse(userInfo1 + userInfo2 + userInfo3);
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
int userInfo1 = 0;
userInfo1 = Int32.Parse(textBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
int userInfo2 = 0;
userInfo2 = Int32.Parse(textBox2.Text);
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
int userInfo3 = 0;
userInfo3 = Int32.Parse(textBox3.Text);
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
int num = Int32.Parse(aVer);
MessageBox.Show(num.ToString());
}
private void label3_Click(object sender, EventArgs e)
{
}
}
}
您多次声明变量。函数调用内部的变量将隐藏您在 class 声明外部定义的变量,并且 class 变量永远不会设置值。
您似乎从未使用过任何字符串形式的变量,因此所有 private string
声明都应更改为 private int
声明。这也使得 int userInfo1 = 0;
声明变得不必要。拥有它们实际上会破坏在 button1_Click
函数中查看值的能力。
我正在尝试为接受三个整数输入并取平均值的作业创建一个计算器,然后 returns 将其提供给用户。我正在使用 Visual Basic(这是必需的)来制作 GUI。我在两件事上遇到了麻烦,首先,我无法让 aVer 除以 3,因为它不是整数,其次,我不知道如何在最后一个文本框中获得平均值的输出。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private string userInfo1;
private string userInfo2;
private string userInfo3;
private string aVer;
private string num1;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int aVer = 0;
aVer = Int32.Parse(userInfo1 + userInfo2 + userInfo3);
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
int userInfo1 = 0;
userInfo1 = Int32.Parse(textBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
int userInfo2 = 0;
userInfo2 = Int32.Parse(textBox2.Text);
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
int userInfo3 = 0;
userInfo3 = Int32.Parse(textBox3.Text);
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
int num = Int32.Parse(aVer);
MessageBox.Show(num.ToString());
}
private void label3_Click(object sender, EventArgs e)
{
}
}
}
您多次声明变量。函数调用内部的变量将隐藏您在 class 声明外部定义的变量,并且 class 变量永远不会设置值。
您似乎从未使用过任何字符串形式的变量,因此所有 private string
声明都应更改为 private int
声明。这也使得 int userInfo1 = 0;
声明变得不必要。拥有它们实际上会破坏在 button1_Click
函数中查看值的能力。