Anderson
Private void btnKiemTra_Click (remitente del objeto, EventArgs e)
{
int k = int.Parse (txtN.Text);
int Luuk = k;
double LgthOfNum = txtN.ToString (). Longitud;
doble num = 0;
doble suma = 0;
while (k> 0)
{
num = k% 10;
suma = suma + Math.Pow (num, LgthOfNum);
k / = 10;
}
if (suma == Luuk)
{
MessageBox.Show ("Es un número armónico");
}
else
{
MessageBox.Show ("No es un número de Armstrong");
}
}