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));
}
}
}
}