Learn to Program with ZedLX

Free Online Programming Course for Beginners

Introduction [7/10]

Run the program to see the result.

The first statement prints the numbers 12 and 7 together without separation, appearing as 127.

To separate the numbers, a space can be added between them.

For a better reading experience, try using fullscreen mode. You can toggle it on and off by pressing the F11 key.

Exercises:

  1. Add this statement to the program: println "Jammed together:" , 2, 5, 1+1;

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

Loading...