Programming Course for Beginners - ZedLX

The Easiest Online Computer Programming Course, for Free

Introduction [7/10]

In the first statement, the program prints the numbers 12 and 7 together. Without any separation, they appear as number 127.
[Run the program]

A way of separating the results would be to add some space between the numbers.

For a more enjoyable reading experience, we recommend using fullscreen mode. You can enter fullscreen by pressing the F11 key. To exit fullscreen, simply press the F11 key again.

Exercises:

1. Add the following statement: println "Jammed together:" , 2, 5, 1+1;

2. Add the following statement: println "Un-jammed: ", 2," ",5," ",1+1;

Loading...