Group
Getting Started with C# Programming
Objective
The objective of this exercise is to develop a C# program that converts a temperature from Celsius to both Kelvin and Fahrenheit, demonstrating arithmetic operations and user input handling in C#.
Create a C# program to convert from Celsius to Kelvin and Fahrenheit. It will prompt the user for the number of degrees Celsius and use the following conversion tables:
Kelvin = Celsius + 273
Fahrenheit = Celsius × 18 / 10 + 32
Example C# Exercise
Show C# Code
// First and Last Name: John Doe
using System;
namespace TemperatureConverter
{
class Program
{
// The Main method is where program execution begins
static void Main(string[] args)
{
// Declare a variable to store the Celsius temperature
double celsius, kelvin, fahrenheit;
// Prompt the user to enter a temperature in Celsius
Console.Write("Enter temperature in Celsius: ");
celsius = Convert.ToDouble(Console.ReadLine()); // Read user input and convert it to a double
// Convert Celsius to Kelvin
kelvin = celsius + 273;
// Convert Celsius to Fahrenheit
fahrenheit = (celsius * 18 / 10) + 32;
// Display the results
Console.WriteLine("\nTemperature Conversions:");
Console.WriteLine("Kelvin: {0}", kelvin);
Console.WriteLine("Fahrenheit: {0}", fahrenheit);
// Wait for user input before closing the program
Console.ReadKey(); // Keeps the console open until a key is pressed
}
}
}
Output
Enter temperature in Celsius: 25
Temperature Conversions:
Kelvin: 298
Fahrenheit: 77