¿Ayuda con estos ejercicios?
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AREAS
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("****************** FIGURAS GEOMETRICAS ****************** ");
Console.WriteLine("\n");
Console.WriteLine(" ********* CALCULO DE AREAS ********** ");
Console.WriteLine("\n");
Console.WriteLine(" 1= C U A D R A D O ");
Console.WriteLine(" 2= R E C T A N G U L O ");
Console.WriteLine(" 3= T R I A N G U L O ");
Console.WriteLine(" 4= C I R C U L O ");
Console.WriteLine("\n");
Console.Write(" POR FAVOR ESCOJE UNA OPCION : ");
string s = Console.ReadLine();
int n = int.Parse(s);
int cost = 0;
switch(n)
{
case 1:
Console.WriteLine("\n");
int l,a;
Console.WriteLine("FORMULA DEL AREA DEL CUADRADO A=(L²)" );
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DEL LADO ");
l =Int32.Parse(Console.ReadLine());
a=l*l;
Console.WriteLine("El area del cuadrado es ++++++> {0} ", a);
break;
case 2:
double a2, b2, h;
Console.WriteLine("FORMULA DEL AREA DEL RECTANGULO A = (b * h)");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DE LA BASE: ==> ");
b2 = Int32.Parse(Console.ReadLine());
Console.WriteLine(" INGRESE EL VALOR DE LA ALTURA: ==> ");
h = Int32.Parse(Console.ReadLine());
a2 =(b2*h);
Console.WriteLine("El area del rectangulo es {0} ", a2);
break;
case 3:
double a3, b3, h3;
Console.WriteLine("FORMULA DEL AREA DEL TRIANGULO A = (b * h)/2");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DE LA BASE: ==> ");
b3 = Int32.Parse(Console.ReadLine());
Console.WriteLine(" INGRESE EL VALOR DE LA ALTURA: ==> ");
h3= Int32.Parse(Console.ReadLine());
a3 = (b3 * h3)/2;
Console.WriteLine("El area del TRIANGULO ES {0} ", a3);
break;
case 4:
double a4, r;
Console.WriteLine("FORMULA DEL AREA DEL CIRCULO A = (3.14 * r²)");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DEL RADIO: ==> ");
r = Int32.Parse(Console.ReadLine());
a4 = (3.14) *(r*r);
Console.WriteLine("El area del CIRCULO ES {0} ", a4);
break;
default:
Console.WriteLine("Seleccion no validad. Por favor seleccione: 1, 2, o 3.");
break;
}
if (cost != 0)
{
Console.WriteLine("Please insert {0} cents.", cost);
}
Console.WriteLine("\n");
Console.WriteLine("Realizado por Mercedes Bravo de Torres.");
Console.WriteLine("\n");
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AREAS
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("****************** FIGURAS GEOMETRICAS ****************** ");
Console.WriteLine("\n");
Console.WriteLine(" ********* CALCULO DE AREAS ********** ");
Console.WriteLine("\n");
Console.WriteLine(" 1= C U A D R A D O ");
Console.WriteLine(" 2= R E C T A N G U L O ");
Console.WriteLine(" 3= T R I A N G U L O ");
Console.WriteLine(" 4= C I R C U L O ");
Console.WriteLine("\n");
Console.Write(" POR FAVOR ESCOJE UNA OPCION : ");
string s = Console.ReadLine();
int n = int.Parse(s);
int cost = 0;
switch(n)
{
case 1:
Console.WriteLine("\n");
int l,a;
Console.WriteLine("FORMULA DEL AREA DEL CUADRADO A=(L²)" );
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DEL LADO ");
l =Int32.Parse(Console.ReadLine());
a=l*l;
Console.WriteLine("El area del cuadrado es ++++++> {0} ", a);
break;
case 2:
double a2, b2, h;
Console.WriteLine("FORMULA DEL AREA DEL RECTANGULO A = (b * h)");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DE LA BASE: ==> ");
b2 = Int32.Parse(Console.ReadLine());
Console.WriteLine(" INGRESE EL VALOR DE LA ALTURA: ==> ");
h = Int32.Parse(Console.ReadLine());
a2 =(b2*h);
Console.WriteLine("El area del rectangulo es {0} ", a2);
break;
case 3:
double a3, b3, h3;
Console.WriteLine("FORMULA DEL AREA DEL TRIANGULO A = (b * h)/2");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DE LA BASE: ==> ");
b3 = Int32.Parse(Console.ReadLine());
Console.WriteLine(" INGRESE EL VALOR DE LA ALTURA: ==> ");
h3= Int32.Parse(Console.ReadLine());
a3 = (b3 * h3)/2;
Console.WriteLine("El area del TRIANGULO ES {0} ", a3);
break;
case 4:
double a4, r;
Console.WriteLine("FORMULA DEL AREA DEL CIRCULO A = (3.14 * r²)");
Console.WriteLine("\n");
Console.WriteLine(" INGRESE EL VALOR DEL RADIO: ==> ");
r = Int32.Parse(Console.ReadLine());
a4 = (3.14) *(r*r);
Console.WriteLine("El area del CIRCULO ES {0} ", a4);
break;
default:
Console.WriteLine("Seleccion no validad. Por favor seleccione: 1, 2, o 3.");
break;
}
if (cost != 0)
{
Console.WriteLine("Please insert {0} cents.", cost);
}
Console.WriteLine("\n");
Console.WriteLine("Realizado por Mercedes Bravo de Torres.");
Console.WriteLine("\n");
}
}
}