设计一程序,油用户输入圆的半径,计算并输出圆的周长和面积

2024-12-28 16:24:43
推荐回答(3个)
回答1:

2个Lable控件用于显示圆的周长和面积
1个Ttxtbox控件用于用户输入圆的半径
1个CommandButton控件 用于触发事件。

回答2:

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控件 用于触发事件。

回答3:

mei fen shui zuo ?