火柴yy吧 关注:39贴子:651
  • 3回复贴,共1

资源链接保存

只看楼主收藏回复



IP属地:广东来自iPad1楼2014-10-05 09:00回复
    我是一个首领
    http://tieba.baidu.com/p/3056464939
    长篇部落战争小说
    http://tieba.baidu.com/p/3040440943
    某野蛮人之王的养成日志
    http://tieba.baidu.com/p/3045213728
    【部落战争】画兵种图
    http://tieba.baidu.com/p/3033826932
    绝对原创!如果觉得我用心,就请点赞吧!
    http://tieba.baidu.com/p/3033534670
    进击の部落!!!!
    http://tieba.baidu.com/p/3027335796
    『非官方手办』国内首发精美COC手办——法师塔(组照)
    http://tieba.baidu.com/p/2812599932
    Utopia OP出品
    http://tieba.baidu.com/p/2962385211
    女王~野猪骑~皮卡~炸弹人~周末特辑~
    http://tieba.baidu.com/p/2934890998
    双版皮卡登场~火眼精金的你更喜欢哪一版?
    http://tieba.baidu.com/p/2965582754
    转:《Gorilla Of Clans》- 改变COC的想法。
    http://tieba.baidu.com/p/3024465111
    【部落时光】之《部落成立》2014-4-10
    http://tieba.baidu.com/p/2981717678
    纸粘土制作的部落建筑
    http://tieba.baidu.com/p/3025669730


    IP属地:广东来自iPad3楼2014-10-05 09:43
    回复
      官方发布:COC玩家素材包及游戏指南本地下载
      http://tieba.baidu.com/p/2579183551
      COC壁纸素材大全,提取自安装包!
      http://tieba.baidu.com/p/3302385901


      IP属地:广东来自iPad4楼2014-10-05 16:40
      回复
        #include<iostream>
        using namespace std;
        int main(){
        int total,n;
        cout<<"Welcome to NIM.Pick a starting total:";
        cin>>total;
        while(total!=0)
        if((total%3)==2){
        total=total-2;
        cout<<"I am subtracting 2."<<endl;
        }else{
        total--;
        cout<<"I am subtracting 1."<<endl;
        if(total==0){
        cout<<"New total is"<<total<<endl;
        if(total==0){
        cout<<"I win!"<<endl;
        break;
        }
        cout<<"Enter num to subtract(1 or 2):";
        cin>>n;
        while(n<1||n>2){
        cout<<"Input must be 1 or 2."<<endl;
        cin>>n;
        }
        total=total-n;
        cout<<"New total is"<<total<<endl;
        if(total==0){
        cout<<"You win!"<<endl;
        break;
        }
        }
        system("PAUSE");
        return 0;
        }


        IP属地:广东5楼2014-10-19 14:25
        回复