我的應用程序應該得到用戶輸入以及重複次數。爲什麼我的while循環沒有按照我的輸入說多少次?
驗證結果爲肯定數據後,應在列表框中顯示結果。
結果應該是進入的代表短語編號。
我知道我需要使用while循環,但我錯在哪裏。下面是我到目前爲止有:
private void btnDisplay_Click(object sender, EventArgs e)
{
// Delcare variables
int Numberofreps;
int Count = 1;
string Phrase = txtPhrase.Text;
//Get the inputs
if (int.TryParse(txtNumberofreps.Text, out Numberofreps))
{
if (txtPhrase.Text == Phrase)
{
lstDisplay.Items.Add(txtPhrase.Text);
}
//Check to make sure its a positive value
while(Count >= 1)
{
//Display the number of reps
lstDisplay.Items.Add(txtPhrase.Text);
}
}
else
{
MessageBox.Show("Not a Positive Value");
}
請使用更好標題! https://stackoverflow.com/help/how-to-ask – Bambuk