write down a vb code for addition, subtraction, multiplication and division
Answers
Answered by
0
Answer:
How to write a Visual Basic(VB) program for Addition, Subtraction, Multiplication, and Division of two numbers with examples.
Step-by-step explanation:
ADD
To add two numbers in visual basic is really simple just use (+) operator. the below code will print the sum of two numbers: 30.
SUB
To subtract two numbers is visual basic. we can use (-) operator. the below code will print Subtraction of two numbers: 10
MUL
Use (*) operator to multiply two numbers in visual basic. The output of the below code will be Multiplication of two numbers: 200.
DIV
Use (/) operator to divide two numbers in visual basic. The output of the below code will be Division of two numbers: 2.
I Hope this helped u ... Plz mark as brainlest answer plzz...
Similar questions