Fundamentals of Programming: A program

From Wikibooks, open books for an open world
Jump to navigation Jump to search

PAPER 1 - ⇑ Fundamentals of programming ⇑

Intro to programming Variables →


VB.NET example[edit | edit source]

When you first load VB.NET in Visual Studio and select to run a Console Application, you will be presented with some source code:

module module1
  sub main()

  end sub
end module

These lines of code will tell the computer what to do, currently they do very little and we need to get started:

Tradition has it that the first program a programmer should write is "Hello World!". Write the following source code into a command line VB.NET programming environment:

module module1
  sub main()
    console.writeline("Hello World!")
    console.readline()
  end sub
end module

If you are using Visual Studio then you can make the program run by pressing F5 or hitting the Run button that looks a little like this:

You should get the following output:

   Code Output
Hello World!


Python example[edit | edit source]

There are many ways to start writing programs in Python on your computer, there are even websites that you can go to and start writing Python code immediately, for example try repl.it

The traditional "Hello World!" program written in Python is just one line of code:

print("Hello World!")

You then need to run the code. If you are using a website like repl.it this is done by simply clicking the run button.

You should get the following output:

   Code Output
Hello World!


A more complex example in both VB.NET and Python[edit | edit source]

There it is, you're on your way to becoming a programmer! There is a lot more to learn and over the course of the next few sections you'll get a crash course in programming.

First of all let's look at another program and find out what it's doing (note that the numbers down the left are not part of the program, we often number the lines of code in this so we can say something like "Now look at line 4 which does a cool thing"):

VB.NET Python
module module1
  sub main()
    console.writeline("Hello there, my name is Peter and my age is 29")
    console.writeline("6 * 6 = " & 6 * 6)
    console.readline()
  end sub
end module
print("Hello there, my name is Peter and my age is 29")
print("6 * 6 = " + str(6 * 6))

We'll take a look at each line of the VB.NET program first:

  1. module module1 - this line tells the computer that this particular program is called module1
  2. sub main defines the section of code that is executed first
  3. console.writeline("Hello...29") - this line writes plain text to the console window. There are lots of other console commands we can perform such as console.beep and console.color. We'll learn about them in the input/output section
  4. console.writeline("6 * 6 = " & 6 * 6) - this writes out a combination of text (everything between the "speech marks") and calculation (6*6), joining the two together with the ampersand &.
  5. console.readline() - If you are running VB from a command line this won't be necessary, but for people using Visual Studio it is. console.readline() waits for you to hit the return key. Modern computers are very fast and if you didn't have this then the words displayed on the screen would appear and then disappear too fast for the eye to see, the screen would appear, then instantly disappear, take this line out and see what I mean.
  6. end sub defines the end of the main code section.
  7. end module - signifies the end of the small program we have written

Now let's look at each line of the Python program:

  1. print("Hello...29") - this line writes plain text to the console window.
  2. print("6 * 6 = " + str(6 * 6)) - this writes a combination of text (everything between the "speech marks") and calculation (6 * 6), joining the two together with the plus symbol +. We have to help Python by casting the result of the calculation as a string using the str command, see the page on Data types to begin to understand why this is necessary.

Both programs should output the following:

   Code Output
Hello there, my name is Peter and my age is 29 6 * 6 = 36

But wait a second, this program isn't much use! Your name probably isn't Peter and you're even less likely to be 29. Time for you to write some code yourself:

Exercise: Hello World!
Create a short program to write the following to the screen, replacing the name Dave with your own name (unless it also happens to be Dave):
   Code Output
Dear Teacher,

My name is Dave and this homework is too easy.
2+2 = 4

Yours Sincerely,
Dave

Answer:

VB.NET answer:

module module1
  sub main()
    console.writeline("Dear Teacher,")
    console.writeline("My name is Dave and this homework is too easy.")
    console.writeline("2 + 2 = " & 2 + 2) 'bonus points for using a sum!
    console.writeline("")
    console.writeline("Yours Sincerely,")
    console.writeline("Dave")
    console.readline()
  end sub
end module

Python answer:

print("Dear Teacher,")
print("My name is Dave and this homework is too easy.")
print("2 + 2 = ", 2 + 2)
print()
print("Yours Sincerely,")
print("Dave")

You can show your friends and family. But wait! It's a rubbish program if you want to share it amongst your friends! Each one of them will have to go and change the source code, then hit run. Rubbish unless you live in a country where everyone has the same name, let's call that country 'Davia', I'm pretty sure you don't live there. We better look at making a program that is a little more interactive, where people can change parts of the program without having to keep re-writing it. For that we'll need something called a variable.