用QBASIC的IF THEN语句编程
发布网友
发布时间:2022-05-12 19:35
我来回答
共4个回答
热心网友
时间:2023-10-19 22:34
input "x=";x
if x>2 then
print "total amount=";x*1.5*.8
else
print "error"
end if
end
热心网友
时间:2023-10-19 22:34
CLS
INPUT X
IF X>= THEN X=1.5*X*0.8 ELSE X=1.5*X
PRINT X
END
热心网友
时间:2023-10-19 22:35
INPUT X
IF X<=2 THEN PRINT "X=";X*1.5:END ELSE PRINT "X=";X*1.5*0.8
END
热心网友
时间:2023-10-19 22:35
cls
input x
if x<=2 then jg=x*1.5 else jg=x*1.5*0.8
print jg
end