ExampleThe following script computes the total weight of n points: Let i(Integer)
Let totalWeight(Integer)
for i while I <= points.Size()
{
totalWeight = totalWeight + pointsWeight[i]
}
If totalWeight == 0
{
// Forbidden case
exit
}
[...]
| |||||||