-
好像我还满像的。
怪异的称呼对于我来说我都最喜欢了,哈哈!
破解程序者黑客(hacker), 破解生活者极客(geek),
geek不是nerd(书呆子), 他(她)们是活跃的社交者,
尤其在网络上 , 往往是六度分隔理论里的发热节点,
他(她)们不只是电子技术爱好者, 一切落后的产品, 落后生活方式和社会制度都是他(她)们破解(h... -
#include <fstream>
#include <iostream>
using namespace std;
int main(int argc, char ** argv)
{
ifstream in("mico.txt", ios::in);
if (!in) return -1;
... -
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char ** argv)
{
string str("ACG study");
cout<<str<<...