Recap - Till 120
Part of the Fundamentals section of Coddy's Java journey — lesson 36 of 73.
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
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Write your code below
}
}All lessons in Fundamentals
4Operators Part 1
Arithmetic OperatorsModulo OperatorIncrement/DecrementPost Increment/DecrementArithmetic ShortcutsComparison OperatorsString Comparison5Operators Part 2
Logical Operators Part 1Logical Operators Part 2Recap - Simple LogicLogical Operators Part 3Logical Operators Part 43Variables Part 2
ConstantsNaming ConventionsRecap - Initialize VariablesType Casting Part 1Type Casting Part 26Decision Making
If StatementIf - ElseSwitch StatementTernary OperatorRecap - If ElseNested If - Else