using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class klavyedengirilensayı
: System.Web.UI.Page
{
public static double toplam,
gort, i, sayi;
protected void
Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)// ilk defa
yüklendiyse bunu yap
{
Label1.Text = "";
Label2.Text = "";
toplam = 0;
gort = 0;
i
= 0;
}
}
protected void
Button2_Click(object sender, EventArgs e)
{
sayi
= Convert.ToDouble(TextBox1.Text);
if (sayi == 0)
{
Button2.Enabled = false;
}
else {
i++;
ListBox1.Items.Add(sayi.ToString ());// sayıları
listbox a ekle
toplam = toplam + sayi;
gort
= toplam / i;
}
Label2.Text = gort.ToString();
Label1.Text = toplam.ToString();
}
}
Hiç yorum yok:
Yorum Gönder