首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴hjx1120的代码贴全部
#include <iostream>
int main()
{
std::cout << "Welcome to BBCN" << std::endl;
return 0; 
}
阅读全部 | 2016年3月19日 17:52
//好习惯
#include <iostream>
#include <string>

struct Free{
    std::string name;
    int num;
};

void Display(const Free & nb);

int main()
......................
阅读全部 | 2016年3月15日 01:07
//坏习惯
#include <iostream>
#include <string>

struct free{
    std::string name;
    int num;
};

void display(const free & nb);

int main()
......................
阅读全部 | 2016年3月15日 01:04
1
hjx1120