up vote 0 down vote favorite
share [g+] share [fb]

I'm having trouble making this work. Apparently, i can't use > or < in the case sentence, is there a workaround for this? Thanks!

case num of
    0:
        begin
            cont_0 := cont_0 + 1;
        end;
    > 0:
        begin
            cont_pos := cont_pos + 1;
            sum_pos  := sum_pos + num;
        end;
    < 0:
        begin
            sum_neg := sum_neg + num;
        end;  
    else;
end;
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
case Sign(num) of
    -1: ... 
     0: ...
     1: ...
end;

More readable than if ... else if ... else? You decide.

link|improve this answer
Lovely, classy. Thanks! – Gabriel A. Zorrilla Sep 7 '09 at 18:56
feedback

Don't use case then, why not use if?

if num = 0 then
        cont_0 := cont_0 + 1;
if num > 0 then
BEGIN
        cont_pos := cont_pos + 1;
        sum_pos  := sum_pos + num;
END
if num < 0 then
        sum_neg := sum_neg + num;
link|improve this answer
In the flow chart i used CASE, i like it more. Less bulky. Thanks anyway! – Gabriel A. Zorrilla Sep 7 '09 at 18:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.