提交时间:2024-11-16 23:48:51
运行 ID: 56908
#include <iostream> using namespace std; int main(){ long a; while(cin>>a){ long i=0,n=0,m=a; //for循环计数有多少个1和多少个0 for(;m>0;m/=2){ if(m%2==0){ n++; }else{ i++; } } if(i>n){ cout<<"A\n"; }else{ cout<<"B\n"; } } return 0; }