int main (void)
{
double x, y, z;
y = 6.0;
x = area(y/3.0);
z = 3.4 * area(7.88);
return 0;
}
/* Find area of circle with radius r */
double area (double r)
{
return (3.14 * r * r);
}
You may want to split up the roles as the "main" person, the "area" person, and the "controller" who commands the execution. Props such as cards or pieces of paper with variable names and values might also be helpful.
After spending about 5 minutes creating your drama, we will share these
with the rest of the class.