- 问答
- 2009-09-06 12:37:51 @
var m:integer; mo:real;
begin
readln(m);
if m>10 then mo:=(m-10)*1.5+2.5 {就是这一句一直通红通红的,不明白为什么}
else if m>0 then mo:=2.5
else if m=0 then mo:=0
else writeln('no answer')
writeln(mo);
readln;
end.
为什么呀??
1 条评论
-
maa04 LV 10 @ 2009-09-06 12:37:52
在你所说的通红通红上面按一下Ctrl+F8试试……
- 1