PI

Original (English)

This constant has the value 3.14159265.

Range:

3.14159265

Example:

var area_circle(var radius)
{
  return(radius * radius * PI); // pi * r²
}

See also:

return, var

Übersetzung (Deutsch)

Diese Konstante hat den Wert 3.14159265.

Wertebereich:

3.14159265

Beispiel:

var area_circle(var radius)
{
  return(radius * radius * PI); // pi * r²
}

Siehe auch:

return, var