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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM