在vfp中编写一个程序,解决问题:从键盘输入10个数,找出其中的最大数和最小数
答案:2 悬赏:40 手机版
解决时间 2021-02-16 10:17
- 提问者网友:聂風
- 2021-02-15 16:46
在vfp中编写一个程序,解决问题:从键盘输入10个数,找出其中的最大数和最小数
最佳答案
- 五星知识达人网友:神鬼未生
- 2021-02-15 17:03
1、
clear
input "输入个数" to n
dimension a[n]
for i=1 to n
input "输入第"+alltrim(str(i))+"个数" to a[i]
endfor
max=a[1]
min=a[1]
for i=2 to n
if max<a[i]
max=a[i]
endif
if min>a[i]
min=a[i]
endif
endfor
?"最大",max
?"最小",min
2、
clear
input "输入个数" to n
dimension a[n]
s=0
for i=1 to n
input "输入第"+alltrim(str(i))+"个数" to a[i]
endfor
for i=1 to n
if a[i]%3=0
s=s+a[i]
endif
endfor
?s
clear
input "输入个数" to n
dimension a[n]
for i=1 to n
input "输入第"+alltrim(str(i))+"个数" to a[i]
endfor
max=a[1]
min=a[1]
for i=2 to n
if max<a[i]
max=a[i]
endif
if min>a[i]
min=a[i]
endif
endfor
?"最大",max
?"最小",min
2、
clear
input "输入个数" to n
dimension a[n]
s=0
for i=1 to n
input "输入第"+alltrim(str(i))+"个数" to a[i]
endfor
for i=1 to n
if a[i]%3=0
s=s+a[i]
endif
endfor
?s
全部回答
- 1楼网友:末日狂欢
- 2021-02-15 18:18
clear
input to x
max=x
min=x
for i=2 to 10
input to x
if max<x
max=x
endif
if min>x
min=x
endif
endfor
?"max=",max
?"min=",min
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯