要求用C編寫三角形類,要求用C 編寫三角形類

2021-05-14 08:30:33 字數 4267 閱讀 8522

1樓:

數學沒學好

請列出三角形周長和麵積計算公式

2樓:俺是工科的

- - 確實很菜的問題

樓主 你多看看課本就好了!

3樓:匿名使用者

這樣的問題也問,真是讓人無語

用c#定義一個三角形類

4樓:周華盛花生

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.threading.tasks;

namespace test

}private double b;

////// 返回邊2

///public double b

}private double c;

////// 返回邊3

///public double c

}bool bools = false;

////// 給三角形賦值,返回真則賦值成功,返回假則表示輸入三角形的山條邊是不合法的

////// 邊1

/// 邊2

/// 邊3

//////

public bool insetabc (double x,double y,double z)

else

return bools;

}//a,b,c

//p=(a+b+c)/2

//則面積的平方s^2=p*(p-a)*(p-b)*(p-c)///

/// 求三角形的面積

//////

public double s()

else

}///

/// 求三角形的周長

//////

public double leng()

else}}}

請問如何用c#編寫如下三角形

5樓:huangfen**瓶

void print(int n)}

6樓:匿名使用者

不就是列印奇數個星啊

每行列印2n-1個

用c#編寫一個程式如何判斷三角形形狀

7樓:

c#程式:

using system;

class program

、、不能構成三角形!", a, b, c);

return;

}//判斷是否是等邊三角形

if (a == b && a == c)、、構成等邊三角形!", a, b, c);

return;

}//判斷是否是等腰直角三角形

if (b == c && a * a == b * b + c * c)

、、構成等腰直角三角形!", a, b, c);

return;

}//判斷是否是等腰三角形

if (a == b || a == c || b == c)、、構成等腰三角形!", a, b, c);

}//判斷是否是直角三角形

if (a * a == b * b + c * c)、、構成直角三角形!", a, b, c);

}else if (a * a < b * b + c * c)、、構成銳角三角形!", a, b, c);

}else

、、構成鈍角三角形!", a, b, c);

}}static void swap(ref int n1, ref int n2)

}執行測試:

a:7b:8

c:88、7、7構成等腰三角形

8、7、7構成銳角三角形

8樓:

獲取三邊的長度 ,分情況比較

c#定義一個類,使用三角形的三條邊計算出三角形的面積.

9樓:匿名使用者

public class ********}public double area()public double valueonepublic double valuetwopublic double valuethree}area()的返回值就是

面積面積的計算用的是海**式

10樓:匿名使用者

設三邊分別是a .b. c,p=(a+b+c)/2

則三角形面積s=

根號p(p-a)(p-b)(p-c)

c#編寫一個程式,計算三角形,正方形和圓形的面積,

11樓:迷惘

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace areademo

class area

////// 求正方形面積

////// 邊長

/// 面積

public double getsquarearea(double side)

////// 求圓面積

//////

///public double getcirclearea(double radius)}}}

12樓:楊志水瓶

#include

#include

#include

using namespace std;

class base

;class ******** : public basevoid disp()

private:

int m_base;

int m_height;

};class square : public basevoid disp()

private:

int m_side;

};class circle : public basevoid disp()

private:

int m_radius;};

用c#做一個三角形判定的程式

13樓:

tryelse if(a<>b && a<>c && b<>c)

else

}catch

c#按以下圖示要求編寫出抽象的圖形類(shape)

14樓:

abstract class sharp

class circle : sharp

public circle(double r)public override double area()public override double perimiter()}class rectangle : sharppublic double height

public rectangle(double w,double h)

public override double area()public override double perimiter()}

有個程式設計題求解答: 用c#、用物件導向思維實現圖形類,三角形、矩形、圓形,並計算圖形面積。

15樓:匿名使用者

介面:factorialimp抽象類:factorialabs實現計算階乘n!

的類:fatorial**:/** * * 階乘計算器 * * 介面 */public inte***ce factorialimp /** * * 階乘計算器 * * 抽象類 繼承 factorialimp */public abstract class factorialabs implements factorialimp /** * 增加抽象方法--計算兩數相乘 * * @param param1int * @param param2int * @return 兩數相乘的積 */abstract long multiplicationcount(long param1int, long param2int);}/** * 實現階乘計算器類 * */public class fatorial extends factorialabs else }}/** * 測試類 * */public class test }

用C定義三角形類,用C 定義一個三角形類

using system using system.collections.generic using system.linq using system.text using system.threading.tasks namespace test private double b 返回邊2 pu...

用c 編寫程式求三角形面積。已知三角形3邊為a,b,c 則三角形面積為area根號(s(s

include include using namespace std bool judge int a,int b,int c 判斷是不是的話,應該是一個布林型別的函式 double area int a,int b,int c int main 你寫的gee並沒有在主程式裡引用啊 c語言程式設計...

c語言程式設計輸出楊輝三角形要求輸出10行

include int main return 0 擴充套件資料 c語言需要說明的是 1.一個c語言源程式可以由一個或多個原始檔組成。2.每個原始檔可由一個或多個函式組成。3.一個源程式不論由多少個檔案組成,都有一個且只能有一個main函式,即主函式。是整個程式的入口。4.源程式中可以有預處理命令 ...