Can Someone Tell Me What These Numbers Say

9997110321151111091011111101013211610110810832109101321191049711610410111510132110117109981011141153211597121
looks like
cthulhu fhtagn
I suggest you find an ASCII table and then start converting the numbers into their character equivalents.

I'll give you a start the first word is "can" followed by a space (32).

use this table to figure it out

http://www.asciitable.com/
The OP already knows what the numbers mean!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <cstring>
#include <iostream>
using namespace std;

int main()
{
    unsigned result = 0;
    const char* const parse = "9997110321151111091011111101013211610110810832109101321191049711610410111510132110117109981011141153211597121";

    for(size_t i = 0, end = strlen(parse); i < end; ++i)
    {
        unsigned cval = parse[i] - '0';
        unsigned total = result * 10 + cval;

        if(total < 128) result = total;
        else
        {
            cout << ":\t" << (char) result << '\n';
            result = cval;
        }
        cout << cval;
    }
    cout << ":\t" << (char) result << '\n';
}


Output:

99:     c
97:     a
110:    n
32:
115:    s
111:    o
109:    m
101:    e
111:    o
110:    n
101:    e
32:
116:    t
101:    e
108:    l
108:    l
32:
109:    m
101:    e
32:
119:    w
104:    h
97:     a
116:    t
104:    h
101:    e
115:    s
101:    e
32:
110:    n
117:    u
109:    m
98:     b
101:    e
114:    r
115:    s
32:
115:    s
97:     a
121:    y
11610497116391153299114117101108
Topic archived. No new replies allowed.