摘要:
a-1 b-2 ab-27 ac-28....按升序排列,最多6位。input output2 1a 2b 1 #include "stdafx.h" 2 #include 3 #include 4 #include 5 using namespace std;... 阅读全文
摘要:
C++的头文件#include "stdafx.h" 头文件#include "iostream" 输入和输出cin cout#include "string" string类#include "fstream" 文件的输入和输出using namespace s... 阅读全文
摘要:
视频录播软件 阅读全文
摘要:
这里有几个简单的实验http://files.cnblogs.com/files/to-creat/WEB%E5%AE%9E%E9%AA%8C%E6%8A%A5%E5%91%8A.rar 阅读全文
摘要:
openGL的简单应用。1.opengl的菜单功能(实现直线、折线和矩形的橡皮筋绘制技术) 1 #include"gl/glut.h" 2 static GLsizei iMode=1; 3 int ipointnum=0;//点的数目 4 int x1=0,x2=0,y1=0,y2=0;/... 阅读全文
摘要:
利用控制台实现宿舍人员管理;包括多种功能,查找,插入,删除,排序,打印等。 1 #include "stdafx.h" 2 #include"stdio.h" 3 #include"string.h" 4 #include"stdlib.h" 5 #include"conio.h"... 阅读全文
摘要:
实现集合的交 并 补运算;采用链表数据结构. 1 #include "stdafx.h" 2 #include 3 #include 4 5 typedef struct LNode//定义结构体类型指针 6 { 7 char data; 8 struct L... 阅读全文
摘要:
关于文件的输入输出,只要在主函数中添加:freopen("E:\\read9.txt","r",stdin);freopen("E:\\write9.txt","w",stdout);即可。其余地方的输入输出不变,但是必须用scanf和printf进行输入输出。实验一迷宫问题(bfs) 1 #in... 阅读全文