Hi...
I have a number range from 1 to 247249719. I would like to divide from 1 to 247249719,with a difference of 10,000. Is there any function for this?
thanks
Printable View
Hi...
I have a number range from 1 to 247249719. I would like to divide from 1 to 247249719,with a difference of 10,000. Is there any function for this?
thanks
I think you will have to explain further...divide what by what? Do you mean a for loop?
Code:for ( int i = 1; i < 247249719; i+= 10000){
....
}