KONU : C Sharp Uygulamalar - C Sharp ( C# ) formda girilen sayıların ekok unu hesaplama programı. C sharp formda okek hesaplama programı. Girilen sayıların en küçük ortak katlarını hesaplama. Girilen iki sayının ortak katlarının en küçüğünü hesaplama.
ETİKETLER: c sharp okek - c sharp ekok - csharp okek - csharp ekok - c# okek- c# ekok- c sharp okek hesaplama
UYGULAMAYI İNDİR
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace okek
{
public partial class Okek_Hesaplama : Form
{
public Okek_Hesaplama()
{
InitializeComponent();
}
private void btnOkekHesapla_Click(object sender, EventArgs e)
{
double sayi1=0, sayi2=0, sayi3=0, okek = 1;
//Birinci sayıyı textbox dan alalım
try
{
sayi1 = Convert.ToDouble(txtSayi1.Text);
}
catch (Exception)
{
sayi1 = 1;
}
//İkinci sayıyı textbox dan alalım
try
{
sayi2 = Convert.ToDouble(txtSayi2.Text);
}
catch (Exception)
{
sayi2 = 1;
}
//Üçüncü sayıyı textbox dan alalım
try
{
sayi3 = Convert.ToDouble(txtSayi3.Text);
}
catch (Exception)
{
sayi3 = 1;
}
//bir sonsuz döngü oluşturacağım. burada okek değeri buluna kadar okek değerini
// 1 arttıracağım
while (true)
{
//bütün sayılara bölüne kadar okek değerini bir arttırılacak
if (okek % sayi1 == 0 && okek % sayi2 == 0 && okek % sayi3 == 0)
{
lblOkek.Text = Convert.ToString(okek);
//okek değeri bulunduğu an döngüden çıkılacak
break;
}
okek = okek + 1;
}
}
}
}
UYGULAMAYI İNDİR
Hiç yorum yok :
Yorum Gönder