write a vb script to generate the following pattern
*****
****
***
**
*
Answers were Sorted based on User's Feedback
Answer / mudaseer
for i=5 to 1 step -1
for j=i to 1 step -1
vstr=vstr & "*" & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
| Is This Answer Correct ? | 30 Yes | 6 No |
Answer / prathyusha
For i=5 To 1 Step-1
For j=1 To i
v=v&"*"
Next
n=n&vbCrLf&v
v=""
next
MsgBox n
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / miko
Dim x,i,j
For i=1 To 5
For j=1 To i
x=x&j
Next
x=x&vbNewLine
next
MsgBox x
***********output*********
1
12
123
1234
12345
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / sumathi
For i=5 to 1 step -1
var=string(i,"*")
print var
Next
| Is This Answer Correct ? | 14 Yes | 11 No |
Answer / eswar
x = "*"
For i=5 to 1 step -1
For j=1 to i
y = y&x
Next
y=y&" "
Next
MsgBox y
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / sanju
ioutput=""
inum=inputbox("enter number")
For indx1 = inum To 1 step-1
For indx2 = 1 To indx1
ioutput=ioutput&"*"
Next
print ioutput
ioutput=""
Next
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nilesh banjare
Num=InputBox("Please enter the number")
For j = 1 To Num Step 1
str= ""
For i = Num to j step -1
m="*"
str = str & m
Next
print str
Next
OUTPUT:-
*****
****
***
**
*
| Is This Answer Correct ? | 5 Yes | 4 No |
join all the array values without using join function?
i want to when we will write the scripts either after getting the build or after getting the SRS?
what is the use of QCUtil? explain with one example?
Hello Friends , I am the new joinner of this website. I am working with Sapient ,Gurgoan I would like to ask few qurries regarding the QTP Tool of (Testing) Currently working on QTP Tool . I would like to no learn VB Script can u name some Books which i get in market. And a small issue in QTP I had 2 users right i have to login and send the document from this user to second user right. when i am send this doc some contendId number generates right. now i am loging into second user and i have to search for that contentId right i found it now i dont want to accept the document so i had an opption of check out ok i have to click on check out my QTP Code is like this Browser(" ").Page(" ").WebTable(" ").ChildItem (3,5,"Image",0).click Browser(" ").Page(" ").Link("ChecK Out").Click i new this code is perfectly right but when i am run the script i have to click on that particular contentId and click on check out but now the Problem is started the error is the document has been already checked out remeber every time my content id changes means it is the new contentId which is not been used atleast once Please help me out in this issue i am in big trouble
Which constant is used for print and display functions and works as same as pressing enter key?
what is the function to get the ascii value of the character?
Mention the environments where vbscript could be run?
How to get the background color of a weblist?
What's the difference between vbscript and vb.net?
What are the uses of vb script?
who you define variables and functions in VB?
How strcomp function works?