7 Kasım 2012 Çarşamba

C# Üs Alma Programı

C# Üs Alma Programı


Programın Kodları
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 textBox1_TextChanged(object sender, EventArgs e)
{
try
{
int a;
a = Convert.ToInt32(textBox1.Text);
}
catch
{
textBox1.Text = "";
}
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
try
{
int sayi, us, sonuc;
sonuc = 1;
sayi = Convert.ToInt32(textBox1.Text);
us = Convert.ToInt32(textBox2.Text);
for (int i = 0; i < us; i++)
{
sonuc = sonuc * sayi;
}
textBox3.Text = Convert.ToString(sonuc);
}
catch
{
textBox2.Text = "";
textBox3.Text = "";
}
}
}
}
//Programda sayı haricinde girişler engellenmiştir.

Hiç yorum yok:

Yorum Gönder