VFP設計程式,列印如下圖形,VFP設計程式,列印如下圖形

2021-04-11 10:24:06 字數 1582 閱讀 5615

1樓:聽不清啊

local n ,i

n = 5

for i=1 to n

@ i ,n-i say replicate([*] ,n)endfor

2樓:★和平海

兩種bai方法:

第一種(具有du通用性,修zhi

改迴圈次數dao可列印不同圖案回

)clear

for i=1 to 5

??space(6-i)

for j=1 to 6

??"*"

endfor

?''endfor

第二種,比較簡單:答

for i=0 to 5

?space(5-i)+replicate('*',6)endfor

使用vfp程式設計輸出如下*星形圖案。如何編寫?

3樓:匿名使用者

for i=1 to 4

??space(8-2*i)

for j=1 to 2*i-1

?? "* "

endfor

? endfor

4樓:匿名使用者

for i=1 to 4

??space(7-(i*2-1)) &&左側空格for j=1 to 2*i-1

?? "*"+" " && "*"+" "

endfor

? && 換行專屬endfor

5樓:聽不清啊

贊同wjp456789的回答

vfp程式設計列印如下圖形:程式設計列印如下圖形: ******* ***** *** *

用vfp編寫乙個程式,在螢幕上輸出下面這個圖形?

6樓:匿名使用者

set talk off for i=1 to 7 if(i<5) ?space(6-i) for j=1 to 2*i-1 ??"*" endfor else ?

space(i-2) for m=1 to 2*(7-i+1)-1 ??"*" endfor endif endforset talk on

高手幫忙,vfp程式設計,列印圖形「倒等腰三角形」

7樓:我呵呵了的故事

倒三角形

clear

input "請輸抄入三角形的襲邊長:" to n*用input命令輸入邊長存放到變數n中

?for i=n to 1 step -1*迴圈變數i控制行,從n到1

??space(20-i) &&輸出20-i個空格for j=1 to 2*i-1

*迴圈變數j控制列,輸出2*i個*

??"*"

endfor

? &&換行

endfor

return

用c語言設計程式求,用C語言設計乙個程式,求12345n

include stdio.h include stdlib.h int main void for sum 0,t i 1 i n sum t i printf the result is d n sum return 0 include stdio.h int jiecheng int x ma...

在vb程式設計中設計程式窗體中有文字框

option explicitdim s 9 as longprivate sub mand1 click dim i as long for i 1 to 9 paixu i next text2.text for i 0 to 9 text2.text text2.text s i next e...

vb設計程式,統計1000以內能被7整除的正整數的個數

private sub form click dim n as integer,i as integerfor i 7 to 1000 if i mod 7 0 then n n 1next print n end sub private sub form load dim totali,i as ...