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
{
public Form1()
{
InitializeComponent();
}
const float pi = 3.141592654f;
private void button1_Click(object sender, EventArgs e)
{
double cevre, alan,r;
r=Convert.ToInt32(textBox1.Text);
cevre = pi * 2 * r;
alan = pi * (r * r);
textBox2.Text = alan.ToString("#.##");
textBox3.Text = cevre.ToString("#.##");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("www.technoprogram.com");
}
}
}
[/csharp]
Dosya boyutu : 51 Kb
Virustotal Sonuçları : 0 / 54 Temiz
Rar şifresi : www.technoprogram.com
C# Çevre ve Alan Hesaplama Projesini İndir
İndirmek için tıklayın
Not:Reklamı geç butonuna tıkladıktan sonra indirme otomatik olarak başlayacaktır.