从键盘上输入三个数,输出最大数,怎么用vfp编程?仅用if条件!

2024-12-26 15:14:14
推荐回答(2个)
回答1:

clear
input "请输入数字求最大数:" to a1
input "请输入数字求最大数:" to a2
input "请输入数字求最大数:" to a3
if a1nmax=a2
else
nmax=a1
endif
if nmaxnmax=a3
else
nmax=nmax
endif
?"三个数当中最大数为:",nmax

回答2:

input "请输入一个数:"to a
input "请输入一个数:"to b
input "请输入一个数:"to c
max=a
if max max=b
endif
if max max=c
endif
?"最大的数是:",allt(str(max))