不是VIP会员,不能显示答案

题目解答

题目:
program sx201601;
var sum,max,i:longlnt;
begin
readln(max);
sum:=0;
for i:=1 to max do
if i mod 2<>0 then
sum:=sum+i;
writeln(sum);
end.
输入:200
输出:10000
考点:
分析:
解答:
评论:
老师: