Beispiel #1
0
    public static void Main()
    {
        Tensão   t1 = 220;
        Corrente c1 = 2;

        Potência p1 = Potência.Calcular(t1, c1);

        Print(p1);

        p1 = 1500;
        t1 = 110;
        Print(Corrente.Calcular(p1, t1));

        c1 = 1.5;
        Print(Tensão.Calcular(p1, c1));
    }