輸入三條邊,判斷是否可構成三角形
阿新 • • 發佈:2019-01-01
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(); } } }