4 lines
83 B
Text
4 lines
83 B
Text
|
max := a;
|
||
|
case when(b>max) max := b
|
||
|
when(c>max) max := c
|
||
|
else max:=a+b+c;
|