Recap - Till 120
Part of the Fundamentals section of Coddy's C# journey — lesson 35 of 69.
Challenge
BeginnerWrite a program that gets the user's age as input.
The program will output (print) the number of missing years till 120 (in a specific format, shown below).
For example, for input 25, the expected output is "95 years till 120".
Make sure to not print anything else!
Try it yourself
using System;
public class Program {
public static void Main(string[] args) {
// Write your code below
}
}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