#30553: 參考解答


zaqxswdce26@gmail.com (卡比獸)

學校 : 不指定學校
編號 : 192970
來源 : [49.216.222.215]
最後登入時間 :
2023-10-24 13:17:05
a132. 10931 - Parity -- UVa10931 | From: [101.12.46.110] | 發表日期 : 2022-05-29 06:28

#include <iostream>
#include <bitset>
using namespace std;
int main(void)
{
    ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
    int a,sum,b;
    bool c;
    while(true)
    {
        cin>>a;
        if(a==0)
            break;
        bitset<32> ans(a);
        sum=0;
        c=false;
        cout<<"The parity of ";
        for(b=31;b>=0;b--)
        {
            if(!c && ans[b]==1)
                c=true;
            if(c)
                cout<<ans[b];
            sum+=ans[b];
        }
        cout<<" is "<<sum<<" (mod 2).\n";
    }

    return 0;
}

 
ZeroJudge Forum