ayúdeme resolviendo esto
El usuario tecleará dos números (a y b), y el programa mostrará el resultado de la operación (a+b)*(a-b) en c#
Respuestas a la pregunta
hola, te envió el código, esta el c#
====================================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a, b;
double res;
Console.Write("Ingresar primer valor a : ");
a = Int32.Parse(Console.ReadLine());
Console.Write("Ingresar segundo valor b : ");
b = Int32.Parse(Console.ReadLine());
res = (a + b) * (a - b);
Console.Write("(a + b) * (a - b) = ");
Console.Write(res);
Console.Read();
}
}
}
====================================================================
Saludos...
Respuesta:
https://brainly.lat/tarea/50784303?answering=true&answeringSource=feedPublic%2FhomePage%2F8