how to write basic programs in VB Script like addition,
multiplication?
Answer Posted / ashok
DIM A
A=INPUTBOX("enter a val")
DIM B
B=INPUTBOX("enter b val")
DIM C
DIM D
C=A+B
MSGBOX ("C is" &C)
C=INT (A)+INT (B)
MSGBOX ("C is" &C)
D=A*B
MSGBOX ("d is" &d)
| Is This Answer Correct ? | 16 Yes | 11 No |
Post New Answer View All Answers
What are the special sub-types in vbscript?
Mention what is the difference between vbscript and vba?
What is the use of the date function in the vbscript language?
What is purpose of scripting.filesystemobject class in vbscript?
How to create a function in vbscript?
please can you help me to get a code of flames using a visual basic 6
Mention the environments where vbscript could be run?
Program to use input box and send even numbers into sheet1 and odd numbers into sheet2 and prime numbers into sheet3 using vbscript(QTP)?
Hai this is sheik, i want to learn VB scripts for web application pls guide me what are all basic things need to know to learn VB scripts in web application.
Which conditional statement is the most convenient one to use in the case of multiple conditions in the vbscript language?
How will you get a subset of a array in vbscript?
What are the uses of vb script?
How to take whole text output from screen of Bitmap Application.
How to assign a date value to a variable?
Which in-built function related to an array joins substrings into one string in the vbscript language?