-
近期文章
近期评论
- coolker 发表在《打造最快的Hash表》
- struggle 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- zhanghaibo 发表在《提供C语言教学课件(适用于初学者)》
- diys 发表在《C语言编程宝典(王大刚) 1.1 C 语言的产生与发展》
文章归档
- 2022 年十月
- 2014 年一月
- 2013 年十二月
- 2012 年十一月
- 2012 年七月
- 2012 年六月
- 2012 年五月
- 2012 年四月
- 2012 年三月
- 2012 年二月
- 2011 年十二月
- 2011 年十月
- 2011 年九月
- 2011 年八月
- 2011 年七月
- 2011 年六月
- 2011 年五月
- 2011 年四月
- 2011 年三月
- 2011 年二月
- 2011 年一月
- 2010 年十二月
- 2010 年十一月
- 2010 年十月
- 2010 年九月
- 2010 年八月
- 2010 年七月
- 2010 年六月
- 2010 年五月
- 2010 年四月
- 2010 年三月
- 2010 年二月
- 2010 年一月
- 2009 年十二月
- 2009 年十一月
- 2009 年十月
- 2009 年九月
- 2009 年八月
- 2009 年七月
- 2009 年六月
- 2009 年五月
- 2009 年四月
- 2009 年三月
- 2009 年二月
- 2009 年一月
- 2008 年十二月
- 2008 年十一月
- 2008 年十月
- 2008 年九月
- 2008 年八月
- 2008 年七月
- 2008 年六月
- 2008 年五月
- 2008 年四月
- 2008 年三月
- 2008 年二月
- 2008 年一月
- 2007 年十二月
- 2007 年十一月
- 2007 年十月
- 2007 年九月
- 2007 年八月
- 2007 年七月
- 2007 年六月
- 2007 年三月
- 2007 年二月
- 2007 年一月
- 2006 年十二月
- 2006 年十一月
- 2006 年十月
- 2006 年九月
- 2006 年八月
- 2006 年七月
- 2006 年六月
- 2006 年五月
- 2006 年四月
- 2006 年三月
- 2006 年二月
- 2006 年一月
- 2005 年十二月
- 2005 年十一月
分类目录
功能
分类目录归档:C/C++源代码共享
2010
01-25
01-25
转自:http://down.51cto.com/data/53416
简介: VC++实现的QQ聊天工具源代码。麻雀虽小五脏俱全,希望对大家有所启发帮助了。
更多内容有待于您去下载体会了。呵呵....
Read More >
2009
12-06
12-06
2009
10-29
10-29
C语言结课了,要做课程设计,一下是题目,求各位大虾给点建议和帮助!!!
用C++编写一个公司人才招聘管理系统
1、华为公司招聘6个部门(编号为 1~6 )的软件开发人员,每个部门有各自的计划招工数。共有100位应聘者,每位应聘者有一报名号,且必须填报两个部门的志愿,并参加公司组织的笔试和面试。公司为每位应聘者评定一个综合考试成绩(0~100分)。然后按从高分到低分(分数相....
Read More >
2009
07-11
07-11
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <math.h>#include <conio.h>#define TRUE 1#define FALSE 0#define Stack_Size 50char ops[7]={'+','-','*','/',....
Read More >
2009
04-14
04-14
1.打开键LPCTSTR StrKey(%%1);HKEY m_hKey=%%2;if (ERROR_SUCCESS==::RegOpenKeyEx(m_hKey,StrKey,NULL,KEY_ALL_ACCESS,&m_hKey)){%%3}
2.添加键LPCTSTR StrKey(%%1);HKEY hKey;DWORD dwDisposition;if (ERROR_SUCCES....
Read More >
2009
04-09
04-09
1.创建文件夹CreateDirectory(%%1,NULL)
2.创建文件
CFile file; file.Open(%%1,CFile::modeCreate|CFile::modeWrite);
3.删除文件DeleteFile(%%1);
4.删除文件夹RemoveDirectory(%%1);
5.删除一个文件下夹所有的文件夹CFileFind finder; BOOL b....
Read More >
2009
04-04
04-04
void conver(char data[],const int x,const int n){ /*十进制的二进制输出*/ int i; for(i=n-1;i>=0;i--) { data[n-1-i]=('0'+((unsigned)(x&(1<<i))>>i));/*在这里为什么要加u....
Read More >
2009
04-02
04-02
首先要知道我们的数据是怎么样放入内存的,例如我们int a=2;sizeof(int)=2;那么放入内存的数据为00000000 00000010,假设int a=-2,那么存放为11111111 11111110,始终记住在内存里存放的....
Read More >
2009
03-15
03-15
2009
03-12
03-12
2009
01-19
01-19
这是我写的一个功能简单的计算器 希望大家捧场 我是菜鸟 谢谢大家了!
#include<iostream.h>#include<stdio.h>void add(){ int b,c,sum; printf("请输入两个数字:\n"); cin>>b>>c; sum=b+c;&nbs....
Read More >
2008
12-04
12-04
#include <stdio.h>
#include<stdlib.h>
#include<string.h>
struct student
{
char num[12];
char name[20];
char sex[4];
int score;
struct student ....
Read More >
2008
10-27
10-27
二叉树 VIEW
#include<string.h>#include<ctype.h>#include<malloc.h> #include<limits.h>
#include<stdio.h>
#include<stdlib.h> /* atoi() */#include<io.h> /* eof() */#inclu....
Read More >
2008
10-15
10-15