码迷,mamicode.com
首页 > 其他好文 > 详细

1067: 密室寻宝(find)

时间:2017-03-24 00:22:28      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:space   out   cst   lag   pen   precision   class   ==   else   

#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <string>
using namespace std;

int main(){
    int p ,q;
    int m,n;
    cin>>p>>q;
    m = p & q;
    int i = 0;
    int k = 0;
    
    while(m > 0)
    {
        i++; 
        if(m % 2 > 0)
        {
            if(k == 0)
                cout<<i; 
            else
                cout<< <<i; 
            k++;
        }
        m = m /2 ;
    }
    if(k==0)
    {
        cout<<0; 
    }
    if(k>=2)
    {
        cout<<endl<<"Open"<<endl;
    }
    else
    {
        
        cout<<endl<<"Close"<<endl;
    }
    
    return 0;
//    cout<<setiosflags(ios::fixed)<<setprecision(4)<<s<<endl;
//    cout<< setiosflags(ios::fixed)<<setprecision(4) <<c<<endl; 
}

 

1067: 密室寻宝(find)

标签:space   out   cst   lag   pen   precision   class   ==   else   

原文地址:http://www.cnblogs.com/shiningrise/p/6607712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!