C语言
佐倉
皆さん、こんにちは。私は桜と申しますが、故郷は河南です。ソフトウェアが大好きだなあ。時間があれば一緒に勉強しましょう!よろしく、お願い致します!
展开
-
opegl画圆
#include<gl/glut.h>#include <gl/glu.h>#include <gl/gl.h>#include<math.h>void Initial(void)//初始化函数 { glClearColor(0.0f, 0.0f, 0.0f, 1.0f);//白色背景,前3个是RGB,最后是Alpha值,用来控制透明,1.0表示完全不透明 glMatrixMode(GL_PROJECTION);//OpenGL按照三维方式来处原创 2021-04-16 16:14:17 · 168 阅读 · 0 评论 -
cmd运行C++文件
【PE】Windows平台命令行中使用vcvarsall.bat配置编译环境cmd D:\program\vs2017\VC\Auxiliary\Build\vcvarsall.bat x64之后运行,D:\program\vs2017\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64\cl.exe C:\Users\Administrator\Desktop\html\test.cpp...转载 2021-01-22 21:01:45 · 660 阅读 · 0 评论 -
C语言数据结构 (清华大学出版社【严蔚敏版】参考)
详情请移步GitHup全部代码已经大致写完,有些还未整理完毕。原创 2019-09-06 22:08:49 · 2605 阅读 · 0 评论 -
二叉树_普通表达式转换为二叉树
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<ctype.h>#include <iostream>#include <malloc.h>using namespace std;typedef struct TNode{ ...原创 2019-09-14 11:59:31 · 1240 阅读 · 0 评论