çok uğraştım üstünde videolu dersi takip ederek hazırladım
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ÜçgenKontrol
{
class Program
{
static void Main(string[] args)
{
Console.Write("Birinci Kenarı Gir : ");
int a = Convert.ToInt32(Console.ReadLine());
Console.Write("İkinci Kenarı Gir"); int b = Convert.ToInt32(Console.ReadLine()); Console.Write("Üçüncü Kenarı Gir "); int c = Convert.ToInt32(Console.ReadLine()); if ((a + b) > c) && (Math.Abs(a - b) < c) && ( (a + c)>b) && (Math.Abs(a - c)< b) &&((c + b)>a) && (Math.Abs(c - b) < a)) ( Console.WriteLine("(0) (1) (2) Kenarları ile Üçgen Oluşturulur dostum .", a,b,c); ) else ) ( Console.WriteLine("(0) (1) (2) Kenarları ile Üçgen Oluşturulur dostum ." , a,b,c); ) Console.ReadKey(); } }}derlediğimde ise program rakamları girdikten sonra kapanıyor o yüzden start without debugging diyerek çalıştırınhatam var ise söyleyin hoca derste derledi üçgen oluşturulabilir dedi ben derledim rakamları girince program kapandı birde siz deneyin bakalım<