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
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