CS Wiki
shachi 的 CS 知识库
int main(int argc, const char *argv[])
{
while (!is_dead(me)) {
reading();
studying();
coding();
sharing();
}
return EXIT_SUCCESS;
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11