randomposts
Powered by Blogger.

EQUATION_EVOLUATION Programming Code in Console Application VB

No comments




# Here Programming Code is an EQUATION_EVOLUATION
Module Module1 /*Module1 is an name of module*/

    Public a, b, c, d As Integer
    Sub Main()
        System.Console.Write("Enter Value of A :")___(Don't Missing Syntax required)*
        a = System.Console.ReadLine___(Don't Missing Syntax required)*

        System.Console.Write("Enter Value of B :")___(Don't Missing Syntax required)*
        b = System.Console.ReadLine___(Don't Missing Syntax required)*

        c = (a + a) - b
        d = (b + b) + a

        System.Console.WriteLine("Value of A :" & a)___(Don't Missing Syntax required)*
        System.Console.WriteLine("Value of b :" & b)___(Don't Missing Syntax required)*
        System.Console.WriteLine("Value of c :" & c)___(Don't Missing Syntax required)*
        System.Console.WriteLine("Value of d :" & d)___(Don't Missing Syntax required)*

        System.Console.Read()


    End Sub

End Module


Note: *Remove The Sentence on this program ___(Don't Missing Syntax required).

No comments :

Post a Comment