自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 简单的利息计算器

#include using namespace std; int main() { double x,y,day; int m; cout cin>>x; cout     cout cin>>m; if (m==1) { cout    cin>>day;         y=x*day/360*0.005; } else if(m>1 && m swit

2014-08-25 21:35:31 398

原创 求两点距离 及 字母简单加密

#include #include using namespace std; int main() { double x1,x2,y1,y2,l; cout cin>>x1>>y1; cout cin>>x2>>y2;     l=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)); cout return 0; }

2014-05-12 15:37:56 381

原创 计算定期还款额度

#include #include using namespace std; int main() { double rate,payment,payPerYear,principal,numYears; cout cin>>principal; cout cin>>numYears; cout cin>>rate; cout cin>>payPerYear; pa

2014-05-12 14:07:01 432

原创 "*"打出的一些图形

int main() { int i,j; for(i=6;i>=1;--i)        { for(j=1;j cout    cout } return 0; } *********** ********* ******* ***** *** * #include using namespace std; int main() { int

2014-05-09 22:46:00 388

原创 求两正整数的正差值and求四个整数的最大值和最小值以及由大到小排序

#include using namespace std; int main() { int a,b,c; cout cin>>a>>b; if (a>b) b=a;           c=b-a; cout return 0; }

2014-05-09 20:44:28 413 1

原创 圆柱体求表面积

#include using namespace std; void main() { double r,h,area; cout cin>>r>>h; area=3.14*r*h*2+3.14*r*r*2; cout }

2014-05-09 16:43:55 385

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除