Welcome Message
Part of the Fundamentals section of Coddy's C# journey — lesson 37 of 69.
Challenge
BeginnerIn 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 AppTry it yourself
using System;
public class Program {
public static void Main(string[] args) {
}
}All lessons in Fundamentals
4Operators Part 1
Arithmetic OperatorsModulo OperatorIncrement/DecrementPost Increment/DecrementArithmetic Shortcuts5Operators Part 2
Comparison OperatorsLogical Operators Part 1Logical Operators Part 2Recap - Simple LogicLogical Operators Part 3