二叉树
程序员文章站
2022-06-15 23:45:48
...
#include <iostream>
#include <string>
using namespace std;
int main()
{
int x,y;
cin >> x >> y;
while(1)
{
if( x > y )
x /= 2;
else if( x < y )
y /= 2;
else if( x == y )
{
cout << x << endl;
break;
}
}
return 0;
}