私はC#を初めて使用し、5つのラジオボタン(強く同意しない、同意しない...非常に同意するなど)のいずれかを選択することで回答される30の質問を含む調査であるプログラムを作成しようとしています。
質問に対してどのラジオボタンがチェックされているかをチェックし、配列に値を割り当てるコードの小さな「ブロック」を設定しました (以下を参照)。
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void buttonScore_Click(object sender, EventArgs e)
{
this.textBoxScoreOutput.Text = " ";
int[] score = new int[2]; // Declares the integer of score and sets it to a value of zero
// Question 1
if (radioButtonSD1.Checked == true) // If Strongly Disagree checked give score a value of 1
score[0] = 1;
else if (radioButtonD1.Checked == true) // If Disagree checked give score a value of 2
score[0] = 2;
else if (radioButtonNS1.Checked == true) // If Not Sure checked give score a value of 3
score[0] = 3;
else if (radioButtonA1.Checked == true) // If Agree checked give score a value of 4
score[0] = 4;
else if (radioButtonSA1.Checked == true) // If Strongly Agree is checked give score a value of 5
score[0] = 5;
// Question 2
if (radioButtonSD2.Checked == true) // If Strongly Disagree checked give score a value of 1
score[1] = 1;
else if (radioButtonD2.Checked == true) // If Disagree checked give score a value of 2
score[1] = 2;
else if (radioButtonNS2.Checked == true) // If Not Sure checked give score a value of 3
score[1] = 3;
else if (radioButtonA2.Checked == true) // If Agree checked give score a value of 4
score[1] = 4;
else if (radioButtonSA2.Checked == true) // If Strongly Agree is checked give score a value of 5
score[1] = 5;
// Output values in array to text box
this.textBoxScoreOutput.Text = "Array: ";
foreach (int i in score)
{
this.textBoxScoreOutput.Text += "[" + i.ToString() + "] ";
}
int sum = score.Sum();
this.textBoxScoreOutput.Text += "The Sum of the array is: " + sum.ToString();
}
}
}
つまり、これは 30 の質問のうち最初の 2 つをチェックしており、まさに私が必要としており、そうなると思っていたとおりに機能しています。
これらの「ブロック」の 1 つだけをループして、30 の質問すべてをチェックできるかどうか疑問に思っていました。検索しても検索しても、探しているものを正確に見つけることができません (正しいものを検索していない可能性があることも理解しています)。
プログラムにこれらの「ブロック」が 30 個含まれないようにしています。これが30個あるとめちゃくちゃになる気がする。これは可能ですか?