The Zwischenablage is a section of the computer's main memory that is used to copy data between various application Programms.
Step 3 is to copy the characters of the Programm from the Web browser's window into the Zwischenablage. Later (in step 4) the characters will be copied from the Zwischenablage into Notepad. Step 3 involves some skills using Windows that you may not have used, yet. Here is the BeispielProgrammmen, again:
class HelloPlanets
{
public static void main ( String[] args )
{
String[] planets = {"Mercury", "Venus", "Earth", "Mars", "Jupiter",
"Saturn", "Uranus", "Neptune", "Pluto"};
for ( int j=0; j< planets.length; j++ )
{
System.out.println("Hello " + planets[j] +"!" );
}
}
}
First, the characters of the Programm must be "highlighted" by clicking the mouse on the first character, und dragging to the last character:
Be careful not to click the mouse again in the window or you will cancel your selection. (But you can always do it again.) After you have done this, you should see something like the following:
The last part of Step 3 is to copy the selected text into the Zwischenablage.