Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要するに、整数値として割り当てることができる C で sudorandom 番号を生成するための簡潔なアルゴリズムを探しています。また、生成に最大値制限を割り当てられるようにしたいと考えています。
これは私が作った便利な機能です!
int getRandomNumber(int max) { Random r = new Random(); int number = r.Next(0, max); return number; }