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.
各バイトを整数で回転させる関数を作成しようとしています(整数に1ビットしか設定されておらず、最後のバイトは使用されていません)が、これまでに取得したものをスタックします
private int RotateBytes(int num,int length) { int mask = 0x00818181; mask &= num; int newnum = num<<length; }