Read this article in your language IT | EN | DE | ES

Download
rar şifresi :
www.egeonline.com
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
namespace DovezKuru
{
public
partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs
e)
{
if (comboBox1.Text == "Euro")
EuroHesapla();
else if
(comboBox1.Text == "Dolar")
DolarHesapla();
}
void EuroHesapla()
{
double kur = 1.8;
double Ytlpara = Convert.ToDouble(textBox1.Text);
double sonuc = Ytlpara * kur;
label1.Text = sonuc.ToString();
}
void DolarHesapla()
{
double kur = 1.3;
double Ytlpara = Convert.ToDouble(textBox1.Text);
double sonuc = Ytlpara * kur;
label1.Text = sonuc.ToString();
}
Arkadaşlar Sizlere
Charp Bir Doviz Kur Nasıl Hesaplanır Örnek Bİr Projem Olarak Sundum
Saygılarımla Orhan Türk
fc4cc810-968b-4177-892a-5349c2b64287|0|.0
C#
c# doviz kur hesapla