解题思路:
注意事项:
参考代码:
#include<iostream> #include<cmath> using namespace std; int main() { int a,n; while(cin>>a>>n) { int s[32]={0},b[32]={0}; int t=0; while(a>0) { s[t++]=a%2; a/=2; } for(int i=0;i<32;i++) { int c=(i+n)%32; b[i]=s[c]; } int ans=0; for(int i=0;i<32;i++) { ans+=b[i]*pow(2,i); } cout<<ans<<endl; } return 0; }
0.0分
0 人评分
简单的a+b (C语言代码)浏览:764 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:910 |
P1001 (C语言代码)浏览:836 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
【偶数求和】 (C语言代码)浏览:674 |
C语言训练-大、小写问题 (C语言代码)浏览:792 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
钟神赛车 (C语言代码)浏览:665 |
前10名 (C语言代码)浏览:773 |
数列排序 (C语言代码)浏览:674 |