2个Lable控件用于显示圆的周长和面积
1个Ttxtbox控件用于用户输入圆的半径
1个CommandButton控件 用于触发事件。
int sizeofcircle; 需要从控件Ttxtbox得到。
#define RATIO(3.14159)
unsigned int circumferences(unsigned int sizeofcircle)
{
return 2*RATIO*sizeofcircle;
}
unsigned int circlearea(unsigned int sizeofcircle)
{
return RATIO*sizeofcircle*sizeofcircle;
}
2个Lable控件用于显示圆的周长和面积
1个CommandButton控件 用于触发事件。
mei fen shui zuo ?