Advertisement
FacuValverdi

EDTP02.-Ejercicio3

Sep 19th, 2019
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace EDTP02
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int suma =0,num ;
  14.             Stack<int> pilaP = new Stack<int>();
  15.             do
  16.             {
  17.                 Console.WriteLine("Ingrese un numero positivo:");
  18.                  string stringnum = Console.ReadLine();
  19.                 num = int.Parse(stringnum);
  20.             } while (num <= 0);
  21.             for (int i = 1; i < num; i++)
  22.             {
  23.                 if (num % i == 0)
  24.                 {
  25.                     pilaP.Push(i);
  26.                     suma += pilaP.Pop();
  27.                 }
  28.             }
  29.             if (suma == num)
  30.             {
  31.                 Console.WriteLine("El numero ingresado es perfecto");
  32.             }
  33.             else
  34.             {
  35.                 Console.WriteLine("El numero ingresado no es perfecto");
  36.             }
  37.         }
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement