Sagot :
uzun bi program yazana kadar süre biter :D
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) { int not1, not2, not3; double ortalama; try { not1 = int.Parse(textBox1.Text); not2 = int.Parse(textBox2.Text); not3 = int.Parse(textBox3.Text); ortalama = (not1 + not2 + not3) / 3; textBox4.Text = ortalama.ToString(); }Thank you for visiting our website wich cover about Bilgisayar. We hope the information provided has been useful to you. Feel free to contact us if you have any questions or need further assistance. See you next time and dont miss to bookmark.