“已知圆的周长为L,编写C语言程序,计算出他的面积。要求从键盘输入周长值,在屏幕上显示出相应的面积值

[复制链接]
查看11 | 回复1 | 2011-3-27 11:48:56 | 显示全部楼层 |阅读模式
回复

使用道具 举报

千问 | 2011-3-27 11:48:56 | 显示全部楼层
<pre id=\"best-answer-content\" class=\"reply-text mb10\">#includestdio.h
#define PI 3.1415926
int main()
{

float L;

float S=0;

printf(\"Please input circum:\");

scanf(\"%f\",

S=L*L/4.0/PI;

printf(\"Area is:%f\\n\",S);

return 0;
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行