#35611: _c++


yp11151180@yphs.tp.edu.tw (810-35舒昭齊)


#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    while(cin >> n &&  n ){
        queue<int> Q;
        int card[100]={0},end=0;

        for(int i=1;i<=n;i++) Q.push(i);
        cout<<"Discarded cards: ";
        while(Q.size()>1){
            cout<<Q.front();
            if(Q.size()!=2)cout<<", ";
            card[end++]=Q.front();
            Q.pop();
            Q.push(Q.front());
            Q.pop();
        }
        cout<<"\nRemaining card: "<<Q.front()<<'\n';
    }
}

#35613: Re: c++


yp11151230@yphs.tp.edu.tw (909-42蔡亞儒)


#include
using namespace std;

int main(){
    int n;
    while(cin >> n &&  n ){
        queue Q;
        int card[100]={0},end=0;

        for(int i=1;i<=n;i++) Q.push(i);
        cout<<"Discarded cards: ";
        while(Q.size()>1){
            cout<            if(Q.size()!=2)cout<<", ";
            card[end++]=Q.front();
            Q.pop();
            Q.push(Q.front());
            Q.pop();
        }
        cout<<"\nRemaining card: "<    }
}



#35615: Re: c++


yp11151097@yphs.tp.edu.tw (908-30施耀登)


boo!