static void Main(string[] args) { Argentina argentina = new Argentina(); int opcion = 0; int suma; while (opcion != 5) { Console.WriteLine( "1)Bajar el precio del pretroleo\n" + "2)Millai habla por TV\n" + "3)CoronaVaira\n" + "4)Saber Inflacion\n" + "5)Salir"); opcion = Int32.Parse(Console.ReadLine()); switch (opcion) { case 1: argentina.BajarElPrecioDelPetroleo(); break; case 2: argentina.MillaiHablaPorTV(); break; case 3: argentina.CoronaVairas(); break; case 4: suma = argentina.inflacion(); if (suma < 500) { Console.WriteLine("Estado:Inflacion normal"); } else { if (suma > 500 && suma < 1000) { Console.WriteLine("Estado:Super Inflacion"); } else { Console.WriteLine("Estado: Hyper Inflacion\nLa Argentina esta en default"); } } break; } } }
static void Main(string[] args) { Argentina argentina = new Argentina(); string opcion = " "; do { Console.WriteLine("Que desea hacer?: \n" + "[1]Bajar el precio del petroleo\n" + "[2]Hacer que Millei hable por TV\n" + "[3]Coronavairas\n" + "[4]Saber el estado de la inflaccion\n" + "[5]Saber si Argentina esta en default\n" + "[0]Salir"); opcion = Console.ReadLine(); switch (opcion) { case "1": argentina.BajarElPrecoiDelPetroleo(); break; case "2": argentina.MillaiHablaPorTV(); break; case "3": argentina.CoronaVairas(); break; case "4": Console.WriteLine("El estado de la inflaccion es: " + argentina.EstadoDeInflaccion()); break; case "5": Console.WriteLine("La argentina esta en default? " + argentina.ArgentinaEnDefault()); break; case "0": opcion = "0"; break; } }while(opcion != "0"); }