1
2
3
4
int r = (int)(Math.floor(Math.random() * 1000000)+100000);
if(r>1000000){
    r = r - 100000;
}
cs