Can anyone help me in write coding to get this pattern
*
**
***
****
Answers were Sorted based on User's Feedback
Option Explicit
Dim i,j,k
for i=1 to 5
for j=1 to i
k=k&"*"&" "
Next
k=k&" "&vbnewline
next
msgbox k
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anil
For i=0 To 4
For j=0 To i
vstr=vstr&"*"&""
Next
vstr=vstr &" "
Next
msgbox vstr
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / chandu
a=4
for i=1 to a step 1
b= string(i,"*")
c=c&" "&b
next
msgbox c
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain some uses of vb script?
What is the difference between Javascript & Vbscript?
Which operator can be used to check if two numbers are equal or not in vbscript?
What is string concatenation function in VBScript?
What are the environments supported by vbscript language?
How are arrays declared in the vbscript language?
Mention what is vbscript?
How to use QTP Object in .vbs(vbscript file) file Ex: Browser().., wait(), exist() and etc...
Please Example programms on vbscript 1)writing functions and calling functions
how to store charecters of HARIBABU Using arrays
write a vb script to find the size of d drive?
What are the 2 ways to pass a value to the function?