1樓:手機使用者
1.clear
dime a(10)
a(1)=1
a(2)=2
s=3for i=3 to 10
a(i)=a(i-1)+a(i-2)
s=s+a(i)
endfor
?"所求和為:",s
2.(樓上那位,第i行有i個*號,不是2*i-1個,上行的*號是對著下行的空格)
clear
for i=1 to 7
s=space(abs(4-i))
for n=1 to 4-abs(4-i)s=s+"* "
endfor
?sendfor
如果裡邊全部是空的,只有菱形的邊的話,程式如下:
clear
for i=1 to 7
for n=1 to 7-abs(4-i)if n=7-abs(4-i)
??"*"
?exit
else
if n=abs(4-i)+1
??"*"
else
??" "
endif
endif
endfor
endfor
2樓:卻彤雲
update 商品表 set 單價=出廠單價*0.1 where left(商品號,2)="10"
3樓:
clear
use 商品表
do while not eof()
if left(商品號,2)="10"
replace 單價 with 出廠單價*0.1endif
skip
enddo
usereturn
4樓:起航教育學校
不用寫程式,一句sql語句就可以了
update 商品表 set 單價=單價*0.1 where left(商品編號,2)="10"
c語言編寫程式,c語言程式編寫
c語言的教材上好象有這個題,現在沒有時間編寫,著急要嗎?第二個應該越簡單越好。include void main printf 3d,3d,3d max maxi maxj printf 3d,3d,3d min mini minj 進行逐項比較。第一題 include main elsebreak...
用VF怎麼做簡易計算器啊,VF編寫簡易計算器
你在計算按鈕上雙擊,在其click事件中輸入 a thisform.text1.valueb thisform.text2.valuen thisform.optiongroup1.valuedo case case n 1 thisform.text3.value a bcase n 2 this...
編寫程式,求Sn a aa aaaaaaaaaa(n個a)的值,其中a是數字
魔天牙 include using namespace std sn a aa aaa n個a ua表示a un表示n 返回值為sn unsigned int sigman unsigned int ua,unsigned int un re n個a ua表示a un表示n uh表示a的位數 十進位...