Celsius to Kelvin and Fahrenheit Converter in C#

In this exercise, we will create a C# program that converts a temperature value from Celsius to both Kelvin and Fahrenheit. The program will prompt the user to input a temperature in degrees Celsius, perform the necessary calculations, and then display the results.

We will use the following conversion formulas:

Kelvin = Celsius + 273

Fahrenheit = (Celsius × 18 / 10) + 32

This exercise will help reinforce user input handling, mathematical operations, and formatted output in C#.



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

 Copy 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

Share this C# Exercise

More C# Practice Exercises of Getting Started with C# Programming

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Introduction to C# Programming

    In this exercise, you will get introduced to the C# programming language and its basic syntax. You'll learn how to write your first C# program, understand how the structure of a C#...

  • Simple Addition in C#

    In this exercise, you will write a basic C# program that performs a simple addition of two numbers, 12 and 13. This will help you understand how to perform basic arithmetic operati...

  • Simple Division in C#

    In this exercise, you will write a basic C# program that performs a simple division operation. The program will divide 24 by 5 and display the result. This exercise will help you u...

  • Basic Arithmetic Operations in C#

    In this exercise, you will create a C# program that evaluates and displays the results of several mathematical operations. These operations involve the use of basic arithmetic oper...

  • Multiplying Two User-Entered Numbers in C#

    In this exercise, you will create a simple C# program that takes two numbers as input from the user, multiplies them, and then displays the result. This exercise will help you prac...

  • Multiplying Three Numbers with User Input in C#

    In this exercise, you will write a C# program that asks the user to enter three numbers and displays their multiplication. This exercise helps you practice using formatted output w...