fori=1tomforj=1tonifa(i)=b(j)then()nextjif()thenprinta(i)nexti我就是想知道外循环和内循环分析顺序,还有这句话啥意思每个单词首字母变成大写,如"Iamastudent"重赋值为"IAmAStud... for i =1 to m
for j=1 to n
if a(i)=b(j) then ( )
next j
if ( ) then print a(i)
next i
我就是想知道外循环和内循环分析顺序,还有这句话啥意思
每个单词首字母变成大写,如"I am a student"重赋值为"I Am A Student."
如果某字符的前一个字符非英文字母,判断其为单词首字母
不懂
举个例子:先循环i=1时,j从1到n的判断循环,然后跳出j循环再次进入i循环执行print a(i),然后进入i=2,j从1到n的判断循环,在跳出j循环执行print,一直这样直到i=m循环结束。
问题2:写出代码你就知道了。
dim str,strtemp as string,I
Str="I am a student"
Strtemp="I"
For I=2 to Len(str)
If mid(str,I-1,1)=" " then
strtemp=strtemp & ucase(mid(str,I,1))
Else
Strtemp=strtemp & mid(str,I,1)
End if
Next i