C# |
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 WindowsFormsApplication15
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int a, b;
double ort;
try
{
a = Convert.ToInt32(textBox1.Text);
b = Convert.ToInt32(textBox2.Text);
if (a<0 || a>100 || b<0 ||b>100)
{
throw new Exception();
}
ort = (a + b) / 2.0;
label4.Text = ort.ToString();
}
catch (Exception)
{
MessageBox.Show("0-100 arası değer giriniz");
}
}
}
}
Sitemizin daha kaliteli paylaşımları yapabilmesi için sizin yorumlarınıza ihtiyacımız var :)
0 yorum :
Yorum Gönder