static void Main(string[] args)
        {
            int a, b, c, d, DIFERENCA;

            a = int.Parse(Console.ReadLine());
            b = int.Parse(Console.ReadLine());
            c = int.Parse(Console.ReadLine());
            d = int.Parse(Console.ReadLine());

            DIFERENCA = ((a * b) - (c * d));

            Console.WriteLine($"DIFERENCA = {DIFERENCA.ToString()}");
            Console.ReadKey();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            int A, B, C, D, DIFERENCA;

            A = int.Parse(Console.ReadLine());
            B = int.Parse(Console.ReadLine());
            C = int.Parse(Console.ReadLine());
            D = int.Parse(Console.ReadLine());

            DIFERENCA = (A * B - C * D);

            Console.WriteLine("DIFERENCA = " + DIFERENCA.ToString());
            Console.ReadLine();
        }
Beispiel #3
0
        static void Uri1007(string[] args)
        {
            int A, B, C, D, DIFERENCA;

            string[] vet;

            vet = Console.ReadLine().Split(' ');
            A   = int.Parse(vet[0]);
            B   = int.Parse(vet[1]);
            C   = int.Parse(vet[2]);
            D   = int.Parse(vet[3]);

            DIFERENCA = ((A * B) - (C * D));

            Console.WriteLine("DIFERENCA = " + DIFERENCA.ToString());
        }