Menu
Coddy logo textTech

Getting Numbers

Part of the Fundamentals section of Coddy's C# journey — lesson 38 of 69.

challenge icon

Challenge

Beginner

Add to the code to get two numbers from the user and store them in variables named num1 and num2 (of double type). After getting the numbers, print them.

The read multiple inputs use:

double num1 = double.Parse(Console.ReadLine());
double num2 = double.Parse(Console.ReadLine());

Try it yourself

using System;

public class Program {
    public static void Main(string[] args) {
        
    }
}

All lessons in Fundamentals