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 |
Mention what is byref and byval parameters in vbscript?
How to open browser in vb script?
what is the object hyrarchy in QTP for a web based application
how to retrive the tooltip by using descriptive programming in qtp?
Explain the operator precedence in vb script?
where can i learn VB scripint ?
how to answer "TELL ME ABOUT UR SELF" as exp.person. whr to start and whr to stop. can anyone tel me
what is used of Property........End Property loop ? how to write the script for it?
does anyone have qtp11.0 license key.Please sendit to my mail id-rrvv2011@gmail.com...Thanks
What is the purpose of on error resume next statement?
How to assign a date value to a variable?
Write a vbscript procedure that converts feet to inches. Hint: there are 12 inches in a foot?