题目描述
32位二进制数 X ,对其进行X+1,X+3操作,并输出。注意不能忽略前导0。 输入第一行,一个整数 T ,代表测试数据组数。接着 T 行,输入32为二进制数输出对每组测试数据。
输出
两行,第一行为X+1,第二行为X+3.
测试样例
输入
2
00000000000000000000000000000000
00000000000000000000000000000001
输出
00000000000000000000000000000001
00000000000000000000000000000011
00000000000000000000000000000010
00000000000000000000000000000100
#include<bits/stdc++.h>
using namespace std;
stack<int> s1,s2;
int main(){
int T;
cin>>T;
while(T--){
char str[33];
long long data=0,ans1=0,ans3=0;
cin>>str;
for(int i=0;i<31;i++){
data=(str[i]-'0')*2+(str[i+1]-'0');
}
// cout<<data<<endl;
ans1=data+1;
ans3=data+3;
for(int i=0;i<32;i++){
s1.push(ans1%2);
s2.push(ans3%2);
ans1=ans1/2;
ans3=ans3/2;
}
for(int i=0;i<32;i++){
cout<<s1.top();
s1.pop();
}
cout<<endl;
for(int i=0;i<32;i++){
cout<<s2.top();
s2.pop();
}
cout<<endl;
}
}