2013年5月11日 星期六

vector string example

    string S[3]={"xxo", "oox", "o"};
    string T[4]={"x", "o", "x", "o"};
    string U[3]={"ooo", "xxxoo", "oxx"};
    vector vs(S, S+3);
    vector vt(T, T+4);
    vector vu(U, U+3);
    //FloodFill3D F;
    //cout<

沒有留言:

張貼留言

Lean 4 極簡教學 (Using VS Code on macOS)

 1. Install Lean Environment: https://lean-lang.org/install/ 試著完Step one, two, three 2. 在VS code下,建一新的project: 取名Hello_World 3. 嘗試執行Main.lea...