protected void calculatePowerButton_Click(object sender, EventArgs e)
{
int numberInt = int.Parse(numberPowerTextBox.Text);
int powerInt = int.Parse(powerTextBox.Text);
int resultInt = 1;
while (numberInt > 0)
{
resultInt *= numberInt * powerInt;
numberInt--;
powerInt--;
}
resultTextBox.Text = resultInt.ToString();
}
嗨,我嘗試當用戶使用輸入一個值numberInt ABD POWERINT來計算功率使用計算能力,同時循環試圖while循環
(numberInt到POWERINT的功率)。
的結果將是resultTextBox顯示....
但是當我調試它送花兒給人等於0
有您使用的這一個循環的一個原因? –
它甚至沒有權力...如果powerInt> numberInt結果總是爲0 – wudzik
http://msdn.microsoft.com/en-us/library/system.math.pow.aspx有什麼問題Math.Pow函數在C# ? –