老实说,我真的很困难,不知道从哪里开始。我已经尝试了几种不同的编码方式,但它又带来了很多错误,我不确定我是否已经开始做正确的了。
问题在下面
编写一个应用程序,用于读取用户三角形边长。使用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(程序不包含适用于入口点的静态“主”方法
即使它说所有这些都是错误的,任何帮助都会受到赞赏
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
答案 0 :(得分:1)
这是一个应该有效的快速解决方案。
using System;
namespace ex
{
public class Program
{
public static void Main(string[] args)
{
double s, area;
double a, b, c;
Console.WriteLine("Enter side #1");
a = double.Parse(Console.ReadLine());
Console.WriteLine("Enter side #2");
b = double.Parse(Console.ReadLine());
Console.WriteLine("Enter side #3");
c = double.Parse(Console.ReadLine());
s = (a + b + c) / 2;
area = Math.Sqrt(s * ( s - a) * (s - b) * (s - c));
Console.WriteLine("Area = {0}", area);
}
}
}