老实说,我真的被困住了,甚至不知道从哪里开始。我尝试了几种不同的编码方式,但它返回了很多错误,我不确定我是否开始做对了。
问题如下
编写一个从用户那里读取三角形边长的应用程序。使用 Heron 公式(如下)计算面积,其中 s 代表三角形周长的一半,a、b、&c 代表三个边的长度。将区域打印到小数点后三位。
// Compute semi-perimeter and then area
s = (a + b + c) / 2.0d;
area = Math.Sqrt(s*(s-a) * (s - b) * (s - c));
这是我的可视化 C# 类
任何形式的帮助将不胜感激!
更新我到目前为止所拥有的,不确定是否正确
我目前收到的唯一错误是 CS5001(程序不包含适合入口点的静态“main”方法
任何帮助表示赞赏,即使它说所有这些都是错误的
namespace Heron {
class HeronsFormula {
public static void main(String[] args) {
Console.WriteLine("type tbh to find the area of triangle through heron's formula");
string typedvalue = Console.ReadLine();
if (typedvalue == "tbh") {
Console.WriteLine("Type the value of first side");
string side1 = Console.ReadLine();
Console.WriteLine("Type the value of second side");
string side2 = Console.ReadLine();
Console.WriteLine("type the value of third side");
string side3 = Console.ReadLine();
double fside = double.Parse(side1);
double sside = double.Parse(side2);
double thside = double.Parse(side3);
double s = (fside + sside + thside) / 2.0;
double har = Math.Sqrt(s * (s - fside) * (s - sside) * (s - thside));
Console.ReadLine();
}
}
}
}
更新 2