Assalamualaikum teman-teman
nah kali ini saya bakal sharing program convert suhu dengan program C# dengan menggunakan note pad nah ini dia cara buatnya dan programnya semoga bermanfaat :)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace suhu1
{
class Program
{
static void Main(string[] args)
{
double c, f, k, r;
Console.WriteLine("PROGRAM KONVERSI SUHU");
Console.Write("Masukkan suhu Celcius : ");
c = Convert.ToDouble(Console.ReadLine());
f = (1.8 * c) + 32;
k = c + 273.15;
r = c * 0.8;
Console.WriteLine("Celcius ke Farennheit : " + f);
Console.WriteLine("Celcius ke Kelvin : " + k);
Console.WriteLine("Celcius ke Reamur : " + r);
Console.WriteLine("CREATED BY TIA ARIYANTI");
Console.ReadLine();
}
}
}
cara praktiknya :
1. buka notepad dan ketik program tersebut :
nah kali ini saya bakal sharing program convert suhu dengan program C# dengan menggunakan note pad nah ini dia cara buatnya dan programnya semoga bermanfaat :)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace suhu1
{
class Program
{
static void Main(string[] args)
{
double c, f, k, r;
Console.WriteLine("PROGRAM KONVERSI SUHU");
Console.Write("Masukkan suhu Celcius : ");
c = Convert.ToDouble(Console.ReadLine());
f = (1.8 * c) + 32;
k = c + 273.15;
r = c * 0.8;
Console.WriteLine("Celcius ke Farennheit : " + f);
Console.WriteLine("Celcius ke Kelvin : " + k);
Console.WriteLine("Celcius ke Reamur : " + r);
Console.WriteLine("CREATED BY TIA ARIYANTI");
Console.ReadLine();
}
}
}
cara praktiknya :
1. buka notepad dan ketik program tersebut :
Comments
Post a Comment