User profile: Moooce

User info
User name:Moooce
Website:http://www.doubledelta.org.uk/contents.htm
Bio:A wannabe pilot, who oh so nearly has a license but keeps running out of cash before completing the course, it has nothing to do with UK weather!!
Best way to avoid the weather (that isn't a problem) is to try and write a simulator in C++ I guess....

History
Joined:
Number of posts:178
Latest posts:

error C2447
[code]return 0; } double taylor(double x)[u];[/u] {[/code] You need to remove the ; in your fu...

how to generate 3 random numbers between 1 and 6 using a function called generate_rand
[code] do{ z=1+rand()%6; [b]}[/b]while(z==x ||z==y); } [/code] You need to close the ...

how to generate 3 random numbers between 1 and 6 using a function called generate_rand
[code]void generate_rand(int&,int&,int&);[/code] returns a void and you are trying to cout it. [...

Array input unusual loop
like vlad was saying about the index from 0 to 19, all your [code]for(int i=0;i<=20;i++)[/code] ...

Made a timer but need tons of them
Take a look at the example for http://www.cplusplus.com/reference/ctime/clock/ [code]clock_t t;...