zoukankan      html  css  js  c++  java
  • Nazo解密游戏攻略

    啊,终于腾出时间来玩这个游戏了,顺手写一下攻略吧……

    第0关:http://cafebabe.cc/nazo/

    第一关:第一关很简单 点一下就好了

    http://cafebabe.cc/nazo/level2.html

    第二关也很简单

    http://cafebabe.cc/nazo/level3.html

    第三关用看源代码

    http://cafebabe.cc/nazo/helloworld.html

    第四关 看js源代码

    http://cafebabe.cc/nazo/java.html

    第五关 所有字母都顺移了一位

    string s;
    int main()
    {
        test;
        while(cin>>s)
        {
            for(int i=0;i<s.size();i++)
                printf("%c",s[i]-1);
            cout<<" ";
        }
    }

    http://cafebabe.cc/nazo/pinetree.html

    第六关 转为16进制

    http://cafebabe.cc/nazo/deadbeef.html

    第七关 是一个人的qq号

    http://cafebabe.cc/nazo/bravo.html

    第八关 clippy

    http://cafebabe.cc/nazo/clippy.html

    第九关 图种……

    http://cafebabe.cc/nazo/click.html

    第十关 按位输出就好了

    string s,s1;
    int main()
    {
        test;
        cin>>s>>s1;
        for(int i=0;i<s.size();i++)
        {
            if(s[i]=='1')
                cout<<s1[i];
        }
        cout<<endl;
    }

    http://cafebabe.cc/nazo/tested.html

    第11关 扫一下就好了……

    http://cafebabe.cc/nazo/basic/office.html

    第12关 xyzzy 这个就是秘籍,百度的……

    http://cafebabe.cc/nazo/basic/xyzzy.html

    第13关 五笔对应的按键 AKPWGDL

    http://cafebabe.cc/nazo/basic/AKPWGDL.html

    第14关 月份 MjJA

    http://cafebabe.cc/nazo/basic/month.html

    第15关 一看就是linux的企鹅

    http://cafebabe.cc/nazo/basic/linux.html

    第16关 扫二维码就好了

    http://cafebabe.cc/nazo/basic/monomaniac.html

    第17关 摩尔斯电码

    http://cafebabe.cc/nazo/basic/sos.html

    第18关 转化成字母之后是five+three=eight

    http://cafebabe.cc/nazo/basic/solve.html

    第19关 笑尿,这个是doge

    http://cafebabe.cc/nazo/basic/doge.html

    第20关 随手积分 pi

    http://cafebabe.cc/nazo/basic/pi.html

    第21关 生命的意义 42 《银河系漫游指南》

    http://cafebabe.cc/nazo/basic/42.html

    第22关 webding字体

    http://cafebabe.cc/nazo/basic/random.html

    第23关 小学生找规律 ×4+1

    http://cafebabe.cc/nazo/basic/cherry.html

    第24关 Fez文字 http://www.ign.com/wikis/fez/Fez_Alphabet

    http://cafebabe.cc/nazo/basic/shadow.html

    第25关 索尼克……http://knowyourmeme.com/memes/sanic-hegehog

    http://cafebabe.cc/nazo/basic/sanic.html

    第26关 FAceB00B

    string s,s1;
    int isB(char c)
    {
        if(c>='A'&&c<='Z')
            return 1;
        return 0;
    }
    int isS(char c)
    {
        if(c>='a'&&c<='z')
            return 1;
        return 0;
    }
    int isN(char c)
    {
        if(c>='0'&&c<='9')
            return 1;
        return 0;
    }
    int main()
    {
        test;
        cin>>s;
        for(int i=0;i<s.size()-8;i++)
        {
            if(isB(s[i])&&isB(s[i+1])&&isS(s[i+2])&&isS(s[i+3])&&s[i+4]==s[i+7]&&isN(s[i+5])&&isN(s[i+6]))
            {
                for(int j=0;j<8;j++)
                    cout<<s[i+j];
                cout<<endl;
            }
        }
    }

    http://cafebabe.cc/nazo/basic/cache.html

    第27关 百度搜图Fractal

  • 相关阅读:
    elasticsearch CriteriaQuery查询例子
    mysql转ElasticSearch的分析 及JAVA API 初探
    java利用HttpClient进行https接口调用
    JDK8新特性:使用stream、Comparator和Method Reference实现集合的优雅排序
    java爬虫入门
    AndroidStudio升到最新版本(3.1.2)之后
    怎样录制简单GIF动图
    android 集成友盟分享之后,想自定义分享面板的看过来
    Android代码中设置字体大小,字体颜色,显示两种颜色.倒计时效果
    Android新特性之CardView的简单使用
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4590885.html
Copyright © 2011-2022 走看看