题解 1775: [编程入门]自定义函数之通用位移

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

melon瓜皮~承包1775题题解

摘要:解题思路:一定要注意,此题不是简单的左右移位,而是循环移位,我的题解都进行了注释,欢迎各位点评参考代码:#include <iostream> #include <cstdio> #include……

java没有无符号数,写C

摘要:参考代码:#include<iostream> using namespace std; int main() { unsigned move(unsigned, int);     ……