题解 1773: [编程入门]C语言循环移位

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

筛选

循环移位的概念

摘要:注意事项:要补足32位后再循环移位,题目中没有说明。参考代码://00000000000000000000001111111111 //0000000000111111111100000000000……

java没有无符号数,写C

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

循环移位(基础)

摘要:解题思路:  循环就是转圈  建议画图理解注意事项: 无参考代码:#include<iostream> using namespace std; const int N=10010; unsig……

[编程入门]C语言循环移位

摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp……