...Example (contd.)
parameters : int length and int width
computation :2 X (length + width)
int Perimeter (int Length, int Width)
int Temp; // local temporary variable
Temp = 2 * (Length + Width); // compute //perimeter
return Temp; // return computed value