手写rand()

inline int rand ( )  {
    static int seed = 233;
    return seed = ( int ) seed * 482711LL % 2147483647; 
}

猜你喜欢

转载自www.cnblogs.com/cjoierljl/p/9377181.html
今日推荐