24 Ocak 2014 Cuma

C# da Metod İle Çevre Hesaplama

c#
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 WindowsFormsApplication13
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
label1.Text = cevrehesapla(5, 7, 4).ToString();
}
int cevrehesapla(int a, int b, int c)
{
int cevap;
cevap = a + b+c;
return cevap;
}
}
}

Sitemizin daha kaliteli paylaşımları yapabilmesi için sizin yorumlarınıza ihtiyacımız var :)

0 yorum :

Yorum Gönder