Programming Course for Beginners - ZedLX

The Easiest Online Computer Programming Course, for Free

Introduction [4/10]

Run the program first.

In the computer programming jargon, “to print out” actually means “to output on the screen”.

A text inside quotation marks is called a string. Strings are printed on the screen exactly as they are stated.

Besides strings, println statements can also print expressions. Expressions can use various operators like +, -, *, / .

Important:

  • Plain statements must be ended by a semicolon (;) symbol.
  • Parts to be printed out must be separated by a comma (,) symbol.

Loading...