C# program to convert kilograms to grams
Following program shows you how to convert kilograms to grams.
In this program we get kilograms from user, once we get those we need to multiply with 1000 so that we get in grams
using System;
class MainClass {
public static void Main (string[] args) {
Console.WriteLine ("Please enter kilograms:");
double kilograms = Convert.ToDouble(Console.ReadLine());
double grams = kilograms * 1000;
Console.WriteLine(grams + " Grams");
}
}
Output:
Please enter kilograms:
10
10000 Grams