求vf编程,一个工厂一天只能生产1台汽车,周一到周五生产,周末休息。接...
发布网友
发布时间:2023-12-30 22:28
我来回答
共2个回答
热心网友
时间:2024-07-28 19:41
clear 我也在做这道题,因为每个星期就有5件,每七天五件。
i=0 n=0
do while s!=120
i=i+1
if i%7=0
n=n+1
s=5*n
endif
enddo
?i
cancel
第二题
accept to a
dime b(n)
n=len(a)
for i=1 to len(a)
c=substr(a,i,1)
b=asc(c)
for i=1 to n
??b(n)
next
b(1)=max
for i=2 to n
if b(i)>max
b(i)=max
endif
next
C=char(b(i))
?c
cancel
这个是我自己的想法我把他们放到以为数组中再比较大小。正确答案等我们老师公布之后告诉你。我自己也在做。
热心网友
时间:2024-07-28 19:46
第1个问题,可能不是这样子,否则太简单
sl=120
ts=120/5*7
?ts
第2个问题
ACCEPT '请输入字符串:' TO zfc
ln=0
zf=''
FOR i=1 TO LEN(zfc)
IF ASC(SUBS(zfc,i,1))>ln
zf=SUBS(zfc,i,1)
ln=ASC(zf)
ENDIF
ENDFOR
?zf