Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. double surface(double cRad, double cLen)
  2. {
  3.  const double PI = 3.1416;
  4. double cVol= 2 * PI * cRad * cLen;
  5. return cVol;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement