DHaromszog/haromszogek/Derékszögű Háromszögek.cs

47 lines
1.2 KiB
C#
Raw Normal View History

2024-01-04 11:57:00 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
2024-01-11 12:31:56 +00:00
using System.IO;
2024-01-04 11:57:00 +00:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace haromszogek
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
2024-01-11 12:31:56 +00:00
if (openFileDialog1.ShowDialog()==DialogResult.OK)
{
string[] sorok = File.ReadAllLines(openFileDialog1.FileName);
List<DHaromszog> derekszoguek = new List<DHaromszog>();
for (int i = 0; i < sorok.Length; i++)
{
try
{
DHaromszog dh = new DHaromszog(sorok[i], i + 1);
}
catch (Exception hiba)
{
listBox1.Items.Add(hiba.Message);
}
}
}
2024-01-11 11:37:44 +00:00
}
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
2024-01-04 11:57:00 +00:00
}
}
}