Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类: C/C++
2008-04-30 23:50:16
#include using namespace std; const float PI=3.1415926; float fcirL(float); float fcirS(float); int main() { float r,l,s; cout<<"圆的半径R=?\b"; int >>r; l=fcirL(r); s=fcirS(r); cout<<"周长l="< cout<<"面积s="< } float fcirL(float x) { float y=1.0; if (x > 0.0) y=2*PI*x ; return (z); } float fcirS(float x) { if(x > 0.0) y=PI*x*x; return(y); }
上一篇:提高对c++的认识
下一篇:C++ 简单求和
登录 注册