Variables

Lesson 5
Author : Afrixi
Last Updated : October, 2017


Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

System.out.println("There once was a man named " + characterName); System.out.println("He was " + characterAge + " years old"); System.out.println("He really liked the name " + characterName); System.out.println("But didn't like being " + characterAge);

System.out.println("There once was a man named " + characterName); System.out.println("He was " + characterAge + " years old");

characterAge = 80;

System.out.println("He really liked the name " + characterName); System.out.println("But didn't like being " + characterAge);