码迷,mamicode.com
首页 >  
搜索关键字:the area of an arbitrary triangle-任意三角形的面积    ( 2667个结果
第四周项目-1.3
#include #include using namespace std; class Triangle { public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void showMessage(); Triangle(double x, double y, double z); private:...
分类:其他好文   时间:2015-04-27 21:47:38    阅读次数:103
第四周项目-1.4
#include #include using namespace std; class Triangle { public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void showMessage(); Triangle(double x, double y, double z) :a(x), b(y...
分类:其他好文   时间:2015-04-27 21:47:16    阅读次数:86
jQuery弹出层_点击自身以外地方关闭弹出层
click show-area
分类:Web程序   时间:2015-04-27 00:19:59    阅读次数:151
Github使用心得
git中重要的概念:工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中;staging area:保存下次即将提交到git repository中文件...
分类:其他好文   时间:2015-04-26 22:25:18    阅读次数:144
github学习心得
git中重要的概念:工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中;staging area:保存下次即将提交到git repository中文件...
分类:其他好文   时间:2015-04-25 22:39:47    阅读次数:170
git hub 使用心得
git中重要的概念:工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中;staging area:保存下次即将提交到git repository中文件...
分类:其他好文   时间:2015-04-25 19:42:29    阅读次数:156
github 心得体会
https://github.com/xu123/text学习了很多知识感觉很有趣git config :配置gitgit add:更新working directory中的文件至staging area。git add .更新所有的文件git commit:提交staging area中的文件至g...
分类:其他好文   时间:2015-04-25 12:12:22    阅读次数:149
MVC 中的Areas支持
在ASP.NET MVC 2中对于Area功能的增强,这样的增强是如何在同一个项目中更好地组织应用程序的? ASP.NET MVC 1.0时,如果我们要在一个项目中做自己网站的后台应用,而又保持URL的整洁性,是很困难的,那需要你自己做很多工作来,通过自有的方式实现Area的功能,效果可能还不那么....
分类:Web程序   时间:2015-04-24 18:43:22    阅读次数:131
[LeetCode]Largest Rectangle in Histgram,解题报告
目录目录 题目 思路一 思路二题目Given n non-negative integers representing the histogram’s bar height where the width of each bar is 1, find the area of largest rectangle in the histogram. Above is a histogram where...
分类:其他好文   时间:2015-04-23 13:33:11    阅读次数:158
【c语言】给出三角形的三边长,求三角形面积
// 给出三角形的三边长,求三角形面积 // area = sqrt( s * ( s - a ) * ( s - b ) * ( s - c ) ) // s = ( a + b + c) / 2 #include #include int main() { int a,b,c; double s,area; printf("请输入三角形三个边长:"); scanf("%d%d%...
分类:编程语言   时间:2015-04-23 13:19:45    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!