0

我正在编码,以下代码没有提供所需的输出。当 pos 除以 2 时,pos&1 应该返回余数。当我用 pos%2 替换 pos&1 时,一切正常。可能是什么问题呢?

#include <iostream>
using namespace std;
int main(){
    int y;
    unsigned long long int pos;
    cin>>y;
    cin>>pos;
    int f=0;
    while(y>0){
        y--;
        if(pos&1==0){
            f=1-f;
        }
        pos=pos/2;
    }
    if(f==1){
        cout<<"blue\n";
    }
    else
    cout<<"red\n";
    return 0;
}
4

1 回答 1

11

1==0优先于pos&1. 尝试if((pos&1)==0){

于 2013-10-28T09:37:15.927 回答