Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ fahrenheit ] /
Makaleler-Article(s)
fahrenheit ile ilgili toplam 1 makale bulundu ! (A total of 1 article(s) about fahrenheit was(were) found in all of articles!)
Article |
---|
Fahrenheit Sıcaklık Arasındaki Çevrimler Bu örnek te Sıcaklık değerini fahrenheit e ya da fahrenheit değerini sıcaklık değerine çevireceğiz. Formunuza 2 adet button ve 1 adet TextBox ekleyin. Aşağıdaki şekilleri inceleyin.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public static double FahrenheitaCevir(string sicaklikdeger)
{
double santigrat = System.Double.Parse(sicaklikdeger);
MessageBox.Show("Fahrenheit Değeri: " + Convert.ToString((santigrat * 9 / 5) + 32));
return (santigrat * 9 / 5) + 32;
}
public static double SicakligaCevir(string fahrenheitdeger)
{
double fahrenheit = System.Double.Parse(fahrenheitdeger);
MessageBox.Show("Sıcaklık Değeri: " + Convert.ToString((fahrenheit - 32) * 5 / 9));
return (fahrenheit - 32) * 5 / 9;
}
private void button1_Click(object sender, EventArgs e)
{
FahrenheitaCevir(textBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
SicakligaCevir(textBox1.Text);
}
}
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.