Por ejemplo, 6 tiene como divisores 1, 2 y 3; entonces 1 + 2 + 3 = 6, el número 6 es perfecto. Si el número es 9, tiene como divisores 1 y 3; entonces 1 + 3 = 4, por lo tanto no es perfecto.
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 numero6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//Variables
int numeroentrada, s = 0, i;
string respuesta = "";
//Entrada
private void textBox1_TextChanged(object sender, EventArgs e)
{
numeroentrada = int.Parse(textBox1.Text);
}
// Proceso y salida
private void button1_Click(object sender, EventArgs e)
{
for (i = 1; i <= numeroentrada / 2; i++)
{
if (numeroentrada % i == 0)
s += i;
}
if (numeroentrada == s)
respuesta = "PERFECTO";
else
respuesta = "NO ES PERFECTO";
textBox2.Text = respuesta;
}
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
No hay comentarios:
Publicar un comentario
Nota: solo los miembros de este blog pueden publicar comentarios.