c#’ta Celcius Ve Fahrenayt
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication10
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double i;
for (int a = 0; a <= 100; a++)
{
i = (1.8 * a + 32);
listBox1.Items.Add(a + ” – ” + Convert.ToString(i));
}
}
}
}
Benzer Konularımıza da Göz Atın!
- C# Büyük Ünlü Uyumu
- Foreach Döngüsü [C#]
- C# ile Asal Sayılar
- C# If-Else & Switch-Case Yapısı
- For Döngüsü [C#]
- Q MATİK (BANKA SIRALAMA SİSTEMİ)
- C#'ta Radio Button Kullanımı
- Karakter Sayısı [C#]
- C# İki sayı arasındaki sayıların toplamı

Son Yorumlanan Konular