Quote Originally Posted by bad00boy View Post
is that a tutorial? O_O' lol , can u plz explain what is the ''#include <iostream>'' & "system("pause");" & "int main()" & "/ *" ? and where to add these lines?
#include:

Includes a file from the library into the program when you compile it.

system("pause");

Performs the system call "pause" which makes the text "Press any key to continue . . . " and will make the user press any key to continue on. Used to pause the program (Hints the name)

int main()

Shows that we are in are main function.

/ *

Are for division and multiplication. + = add - = subtract * = mulitply and / = divide. (Check my Calculator example for more info on this)

;)