using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double a, b, c;
Console.WriteLine("输入三角形的三条变:");
a = double.Parse(Console.ReadLine());
b = double.Parse(Console.ReadLine());
c = double.Parse(Console.ReadLine());
if ((a + b) > c && (a + c) > b && (b + c) > a)
{
double l = a + b + c;
Console.WriteLine("可以构成三角形 三角形的周长是" + l);
}
else {
Console.WriteLine("不能构成三角形");
}
Console.ReadKey();
}
}
}
输入三条边,判断是否可构成三角形
最新推荐文章于 2024-09-12 14:01:08 发布