Category: C# Projeler

0

C# Girilen Sayının Rakamları Toplamını Bulma

C# Girilen Sayının Rakamları Toplamını Bulan Program using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace girilen_sayinin_rakam_toplami { public partial class Form1 : Form...

0

C# Dart Oyunu

C# Dart Oyunu Uygulaması   using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() {...

0

C# Access Ekle, Sil, Ara, Güncelle

C# Access Ekle, Sil, Ara, Güncelle Programı C# access bağlantısı ile basit veri tabanı işlemleri(Ekle, Sil, Ara, Güncelle) yapalım. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using...

0

C# Kayan Yazı Oluşturma

C# Kayan Yazı Oluşturma Programı   [csharp] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace kayan_yazi { public partial class Form1 : Form...

15

C# Öğrenci Takip ve Not Kayıt

C# Öğrenci Takip Not Kayıt Programı Program profesyonel kullanım için değilde programlama derslerinde sizlere yardımcı olacağını düşünüyorum. Program hakkında biraz bilgi verelim. Programımız basit veri tabanı işlemlerini(Ekleme, Silme, Güncelleme, Arama) yapıyor. Kayıtları Access veritabanında...

0

C# Üs Hesaplama

C# Üs Hesaplama Programı [csharp]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Us_Hesapla { public partial class Form1 : Form { public Form1()...

0

C# Çevre ve Alan Hesaplama

C# Çevre ve Alan Hesaplama Programı [csharp]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Cervre_alan_hesaplama { public partial class Form1 : Form {...

0

C# Faktöriyel Hesaplama

C# Faktöriyel Hesaplama Programı [csharp]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Faktoriyel_bulma { public partial class Form1 : Form { public Form1()...

0

C# Girilen Sayının Asal Olup Olmadığını Bulma

C# Girilen Sayının Asal Olup Olmadığını Bulan Program   [csharp]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Asal_mı { public partial class Form1...