Ürün Fiyatı , Kdv Oranı ve İndirim Türüne göre Ödenecek Tutarı hesaplayan program — C#

Ürün Fiyatı , Kdv Oranı ve İndirim Türüne göre Ödenecek Tutarı hesaplayan program — C#

[code lang=”csharp”]

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;//www.gorselprogramlama.com

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace WindowsFormsApplication1

{

public partial class Form1 : Form

{//www.gorselprogramlama.com

public Form1()

{

InitializeComponent();

}

double a = 0;//www.gorselprogramlama.com

private void Form1_Load(object sender, EventArgs e)

{

}

private void button1_Click(object sender, EventArgs e)

{

a = Convert.ToDouble(textBox2.Text)+Convert.ToDouble(textBox2.Text) *( Convert.ToDouble(textBox3.Text)/100);

if (radioButton1.Checked)

{

textBox4.Text = (a – a * 0.03).ToString();

}

if (radioButton2.Checked)//www.gorselprogramlama.com

{

textBox4.Text = (a – a * 0.05).ToString();

}

if (radioButton3.Checked)

{

textBox4.Text = a .ToString();

}//www.gorselprogramlama.com

}

}

}

[/code]

Projeyi İNDİR

Yorumlar 1

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir