My IT project                   

      I started off working with c++ programing, I read through 2 tutorials and learned some simple coding, but than was unable to download a compiler. I tryed downloading 4 different c++ compilers, that would not run on this computer. So I gave up with c++. Here are two tutorails that i used to learn c++.

Tutorial 1

Tutorial 2

                                                                                                                

    Since I had no luck with c++ I decided to start working wtih vbscript. I asked kids around the class what they were doing (java, html) but i felt like doing something different. So I looked on the internet and found vbscrit.I began learning vbscript by a tutorial. Once I new enough coding I found an online compiler. This let me practice vbscript coding and make simple math programs.

  Online Compiler

  Tutorial

Using vbscript I built a simple program, in which you guess a number and the program picks a random nunber 1-10.  Than it will tell you if your guess is the same as the computers guess. here is the coding to the program:

<html>
<body>

<script type="text/vbscript">
dim number
number="7"
document.write("your guess is: " & number)
</script>

<script type="text/vbscript">
randomize()
randomNumber=Int(10 * rnd())
document.write("the random number is: <b>" & randomNumber & "</b>")
</script>

</body>
</html>

To see how this works copy and past it into this online compiler.

http://www.w3schools.com/vbscript/tryit.asp?filename=vbdemo_text