摘要:
阅读全文
摘要:
原文来自豆瓣http://www.douban.com/note/338067148/glew的英文全称应该是The OpenGL Extension Wrangler Library,直译过来应该就叫OpenGL的扩展库,这里的wrangler原意有牧马人的意思,这里为什么加这个词有点不太清楚。关... 阅读全文
摘要:
1.安装GLEW。 大家可以在网上下载安装GLEW库(glew.sourceforge.net)这个主页现在很难上,我喜欢在APT命令安装。在控制台输入:?1sudo apt-get install libglew-dev glew-utils这就完成了。 阅读全文
摘要:
#include #include int main(){ int n; while(scanf("%d",&n)==1) { int k =(int)floor((sqrt(8.0*n+1)-1)/2-1e-9)+1; int s = k*(k+1)/... 阅读全文
摘要:
CMake简介CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性,类似UNIX下的automake。CMake 使用方法CMake的所有的语句都写在一个叫:CMakeL... 阅读全文
摘要:
出现这个编译错误的原因在g++ gcc 版本不够高。添加源(Ubuntu)12$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test$ sudo apt-get update安装4.8版本?1$ sudo apt-get install gcc-4... 阅读全文
摘要:
原文链接http://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/#icomments第一个生成斐波那契數列的方法您可能听说过,带有 yield 的函数在 Python 中被称之为 generator(生成器),何谓 gen... 阅读全文
摘要:
#include #include #include using std::string;const int maxn = 1000;struct bign{ int len,s[maxn]; bign(){ memset(s, 0, sizeof(s));len =1;} ... 阅读全文
摘要:
#include #include const int maxn =3000;int main(){ int f[maxn]; memset(f, 0, sizeof(f)); int i,j,n;f[0]=1; scanf("%d",&n); for (i=2... 阅读全文
摘要:
下载链接:https://sourceforge.net/project/downloading.php?group_id=67586&filename=glew-1.5.1-win32.zip点击上面的链接下载最新的GLEW(支持OpenGL 3.0),解压,将 /bin/glew32.dll 拷... 阅读全文