how to get sum of two numbers in vb.net?
Answer Posted / banshi
Sub Main()
Dim x, y As Integer
Console.Write("Enter value of x: ")
x = Console.ReadLine()
Console.Write("Enter value of y: ")
y = Console.ReadLine()
Console.Write("Sum x+y = ")
Console.WriteLine(x + y)
Console.ReadLine()
End Sub
Is This Answer Correct ? | 124 Yes | 34 No |
Post New Answer View All Answers
Which dll is used for microsoft .net run time?
Explain the advantage of option strict on?
What are the difference between dispose(), close(), exit(), end()?
What is private assembly?
What is the difference between Namespace and Assembly?
Explain public assembly?
What is a static variable?
What are the differences between server-side and client-side code?
So you know which dll is used for microsoft .net run time?
What do you mean by deserialization?
What is the difference between custom control and user control?
difference between checkbox vs radiobutton??
Described strong typing
What is normal jit?
write a program to develop a graphic user interface application of marks book with students names and their names.the program should show the following options main menu,add student details,display student details,maximum mark and minimum mark.