Menu
Coddy logo textTech

Welcome Message

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

challenge icon

Challenge

Beginner

In this project, you'll create a basic calculator app that performs arithmetic operations like addition, subtraction, multiplication, and division.

Every good program starts with a welcome message. Output to the screen the following string:

Calculator App

Try it yourself

using System;

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

All lessons in Fundamentals