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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
const float pi = 3.14f;
float cevre, alan;
int r;
r = Convert.ToInt32(textBox1.Text);
alan = pi * r * r;
cevre = 2 * pi * r;
textBox2.Text = alan.ToString();
textBox3.Text = cevre.ToString();
}
}
}
27 Ekim 2012 Cumartesi
Dairenin alanını ve çevresini bulma
Kaydol:
Kayıt Yorumları (Atom)
Hiç yorum yok:
Yorum Gönder