这是lazarus里我编的程序。哪里错了啊

programnum3;varf,p,w,s:integer;beginreadln(s,w,p);ifs<250thenf:=s*p*w;if(s>=250)and(s... program num3;
var
f,p,w,s:integer;
begin
readln(s,w,p);
if s<250 then f:=s*p*w;
if(s>=250)and(s<500) then f:=s*p*w*(1-0.02);
if(s>=500)and(s<1000) then f:=s*p*w*(1-0.05);
if(s>=1000)and(s<2000) then f:=s*p*w*(1-0.08);
if(s>=2000)and(s<3000) then f:=s*p*w*(1-0.1);
if(s>=3000) then f:=s*p*w*(1-0.15);
writeln(f);
readln;
end.
展开
 我来答
guanzihan122
2011-12-04 · TA获得超过189个赞
知道小有建树答主
回答量:73
采纳率:0%
帮助的人:79.9万
展开全部
类型不匹配,f应该定义为double 或extended 如下编写即可:
program num3;
var
p,w,s:integer;
f:extended;
begin
readln(s,w,p);
if s<250 then f:=s*p*w;
if(s>=250)and(s<500) then f:=s*p*w*(1-0.02);
if(s>=500)and(s<1000) then f:=s*p*w*(1-0.05);
if(s>=1000)and(s<2000) then f:=s*p*w*(1-0.08);
if(s>=2000)and(s<3000) then f:=s*p*w*(1-0.1);
if(s>=3000) then f:=s*p*w*(1-0.15);
writeln(f);
readln;
end.
追问
非常感谢,你在看看我的其他提问吧
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式