| View previous topic :: View next topic |
| Author |
Message |
Nuclear898 Grandmaster Cheater Supreme
Reputation: 0
Joined: 04 Jun 2006 Posts: 1597 Location: The Netherlands
|
Posted: Wed Oct 17, 2007 6:21 am Post subject: C++ |
|
|
I want to make a small app which browses sites real fast, etc www.example.ex/****
and with ****= numbers reaching from 0-9999
this will be my first C++ project and i neem some help on sites where i can find info on doing this.
Thanks in advance.
|
|
| Back to top |
|
 |
Robotex Master Cheater
Reputation: 0
Joined: 05 Sep 2006 Posts: 378 Location: The pizza country!
|
Posted: Wed Oct 17, 2007 6:28 am Post subject: |
|
|
for(int i = 0; i < 9999; i++)
{
<code here>
}
_________________
ASM/C++ Coder
Project Speranza lead developer |
|
| Back to top |
|
 |
Nuclear898 Grandmaster Cheater Supreme
Reputation: 0
Joined: 04 Jun 2006 Posts: 1597 Location: The Netherlands
|
Posted: Wed Oct 17, 2007 6:34 am Post subject: |
|
|
thanx but i have no idea what that does
you can spoonfeed me but I actually want to learn programming in C++
|
|
| Back to top |
|
 |
darkbobert How do I cheat?
Reputation: 0
Joined: 08 Mar 2007 Posts: 0
|
Posted: Wed Oct 17, 2007 11:41 am Post subject: |
|
|
| how i wud do it is set a variable and have it sendinput that variable and increase its value by 1 every cycle
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Wed Oct 17, 2007 11:56 am Post subject: |
|
|
| Nuclear898 wrote: | thanx but i have no idea what that does
you can spoonfeed me but I actually want to learn programming in C++  |
If you don't know what that does, then you need to go read some more
http://www.cplusplus.com/doc/tutorial/
|
|
| Back to top |
|
 |
Heartless I post too much
Reputation: 0
Joined: 03 Dec 2006 Posts: 2436
|
Posted: Wed Oct 17, 2007 2:07 pm Post subject: |
|
|
| Robotex wrote: | for(int i = 0; i < 9999; i++)
{
<code here>
} |
Or you can use this code.
| Code: | for(;;)
{
\\Code Here
} |
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Wed Oct 17, 2007 2:32 pm Post subject: |
|
|
| HornyAZNBoy wrote: | | Robotex wrote: | for(int i = 0; i < 9999; i++)
{
<code here>
} |
Or you can use this code.
| Code: | for(;;)
{
\\Code Here
} |
|
... why? the first loop is already doing half the work for you. also your loop is endless.
|
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Wed Oct 17, 2007 4:33 pm Post subject: |
|
|
| darkbobert wrote: | | how i wud do it is set a variable and have it sendinput that variable and increase its value by 1 every cycle |
Retard says what?
|
|
| Back to top |
|
 |
|