how to get sum of two numbers in vb.net?
Answer Posted / kaviyarasu
Imports system.console
Module Module1
Sub main()
Dim a, b, c As Integer
Console.WriteLine("Ente a:")
a = ReadLine()
Console.WriteLine("Enter b:")
b = ReadLine()
c = a + b
Console.WriteLine("The Result is:" & c)
ReadLine()
End Sub
End Module
| Is This Answer Correct ? | 15 Yes | 12 No |
Post New Answer View All Answers
What is the difference between .dll extension and .exe extension files?
What are the technology areas that microsoft.net contains?
Explain jit?
Explain about globalization?
What is the difference between vb 6 and vb.net?
What is the use of assembly?
Write a program that would find the nth term of a geometric progression, given the value of first term and common ratio. Any inbuilt function that the language provides for calculating exponent should not be used.
What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?
Explain about visual basic?
What is late binding and early binding?
What are the advantages of vb.net and c#?
Explain option strict?
What is different between web.config and machine.config and where it will be ?
What is strong name in .net assembly?
What is meant by jagged arrays?