您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 考试中的人机对话C++编程例子之一

  2. ======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : 考试 ======================================================================== AppWizard has created this 考试 application for you. This applica
  3. 所属分类:C++

    • 发布日期:2009-05-31
    • 文件大小:96256
    • 提供者:whwits
  1. 学生信息管理系统 c语言编写的

  2. c语言编辑的学生信息管理系统 很全。当时自己做的时候还是费了很大的劲 #include "stdafx.h" void fun1(); void fun2(); void fun3(); void fun4(); void fun5(); void fun6(); struct student { int num; char name[20]; char sex[20]; char major[20]; }stu[60]; #include #include #include #incl
  3. 所属分类:C

    • 发布日期:2009-07-07
    • 文件大小:228352
    • 提供者:woaini131415926
  1. 迷宫游戏的c++源程序

  2. C++迷宫源码 WIN32 APPLICATION : maze AppWizard has created this maze application for you. This file contains a summary of what you will find in each of the files that make up your maze application. maze.cpp This is the main application source file. maze
  3. 所属分类:C++

    • 发布日期:2009-07-20
    • 文件大小:119808
    • 提供者:yjbbrqw
  1. 常见c++笔试题整理(含答案)

  2. 2.输入一个字符串,将其逆序后输出。(使用C++,不建议用伪码) #include using namespace std; void main() { char a[50];memset(a,0,sizeof(a)); int i=0,j; char t; cin.getline(a,50,'\n'); for(i=0,j=strlen(a)-1;i<strlen(a)/2;i++,j--) { t=a[i]; a[i]=a[j]; a[j]=t; } cout<<a&l
  3. 所属分类:C++

    • 发布日期:2009-08-23
    • 文件大小:32768
    • 提供者:zhangheng0624
  1. C++调用java代码的JNI实现

  2. C++调用java代码验证用户和权限的JNI实现 JAVA代码说明: C++代码说明: 头文件包括三个stdafx.h、jni.h、jni_md.h stdafx.h:vc2005自动生成的,在这个文件中要加入jni相关的头文件如下 jni.h:jdk中自带的头文件,可以在Java\jdk1.5.0_09\include下面找到,它还参考一个jni_md.h jni_md.h:jdk中自带的头文件,可以在Java\jdk1.5.0_09\include\win32下面找到 C++源代码说明:J
  3. 所属分类:Java

    • 发布日期:2009-09-11
    • 文件大小:112640
    • 提供者:tiney
  1. c++ 面试题 总结

  2. C++面试题 1.是不是一个父类写了一个virtual 函数,如果子类覆盖它的函数不加virtual ,也能实现多态? virtual修饰符会被隐形继承的。 private 也被集成,只事派生类没有访问权限而已 virtual可加可不加 子类的空间里有父类的所有变量(static除外) 同一个函数只存在一个实体(inline除外) 子类覆盖它的函数不加virtual ,也能实现多态。 在子类的空间里,有父类的私有变量。私有变量不能直接访问。 --------------------------
  3. 所属分类:C

    • 发布日期:2009-09-16
    • 文件大小:158720
    • 提供者:rzvs8275161
  1. stdafx.h文件

  2. stdafx.h : 标准系统包含文件的包含文件。   Microsoft C 和 C++ 编译器提供了用于预编译任何 C 或 C++ 代码(包括内联代码)的选项。利用此性能特性,可以编译稳定的代码体,将已编译状态的代码存储在文件中,以及在随后的编译中,将预编译的代码与仍在开发的代码结合起来。由于不需要重新编译稳定代码,因此后面每次编译的速度都要快一些。
  3. 所属分类:C

    • 发布日期:2009-10-15
    • 文件大小:667
    • 提供者:yizhuxuanwu
  1. C++图书管理系统代码源

  2. StdAfx.h, StdAfx.cpp These files are used to build a precompiled header (PCH) file named BookAdmi.pch and a precompiled types file named StdAfx.obj. Resource.h This is the standard header file, which defines new resource IDs. Microsoft Visual C++ re
  3. 所属分类:C++

    • 发布日期:2009-12-14
    • 文件大小:9216
    • 提供者:kxgggyy
  1. c++及sql server 2005企业人事管理系统

  2. 含源程序,使用说明和数据库文件。注意:打开工程文件,进入到Visual C++开发环境中,在“StdAfx.h”文件中更改连接SQL Server2005的服务器名称。简介:人力资源管理系统是这样的一种管理软件,它能够快速、方便地显示结果,还可以对有关工资的各种信息进行统计,服务于财务部门及公司主要管理者。实施人力资源管理系统可以集中、整合各种信息来源,有利于降底管理成本,提高公司管理效率和水平,从而促进公司的进一步发展和变革。
  3. 所属分类:C++

    • 发布日期:2009-12-18
    • 文件大小:12582912
    • 提供者:hj19700918
  1. vc StdAfx头文件

  2. VC中的StdAfx头文件 // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__58C73787_1231_40B3_A8BC_2F7670ABA3D7__INCLUDED_)
  3. 所属分类:C++

    • 发布日期:2009-12-30
    • 文件大小:1024
    • 提供者:wangzhi1990
  1. DES算法C++源码

  2. DES算法的c++实现,已经过测试正确。 这个东西是用vs2005做的,前面有朋友说的头文件没有,是我的失误 #include "DES.h"这一行是没有用的,可以注释掉。我本来把这些东西写到了一个DES类里边,在这个文件里边测试的。#include "stdafx.h"是vs2005建工程的时候自己加上去的,这个vs里边必须要有,其他的编译环境就不清楚了。其他的代码应该没什么问题吧。应该vs里新建一个vc 控制台应用程序,再把这个代码覆盖到cpp文件里就可以运行了。
  3. 所属分类:C++

    • 发布日期:2010-03-29
    • 文件大小:12288
    • 提供者:linghuozi
  1. c++源码程序之人机对战五子棋的设计可做毕业论文

  2. // 五子棋Dlg.cpp : implementation file // #include "stdafx.h" #include "五子棋.h" #include "五子棋Dlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif int board[14][14]; //棋盘数组 BOOL ptable[14][14][480]; //人的所
  3. 所属分类:C++

    • 发布日期:2010-04-11
    • 文件大小:97280
    • 提供者:pc_master
  1. C++程序设计源程序代码

  2. #include "stdafx.h" #include //#include using namespace std; int compare(int& x,int& y) { if(y>x) { int temp; temp=x; x=y; y=temp; } return 0; } int main() { int x,y; cin>>x>>y; compare(x,y); cout<<x<<" "<<y; return
  3. 所属分类:C++

    • 发布日期:2010-05-13
    • 文件大小:2048
    • 提供者:menglei19870602
  1. 约瑟夫问题 c语言 循环链表

  2. #include "stdafx.h" #include #include //-------------------------------------------------------- typedef struct jos { int order; int mima;//每个人的密码 struct jos *link; }Node;
  3. 所属分类:C

    • 发布日期:2010-05-14
    • 文件大小:173056
    • 提供者:zhongyuan2810
  1. 用c++类模板,实现的单链表基本操作

  2. #include "stdafx.h" #include #include using namespace std; template struct LNode { T data; LNode *next; }; template class LinkList { public: LinkList(){L = 0;}//构造函数 ~LinkList();//析构函数,销毁单链表 void CreateList_L(int n);//构造单链表 bool IsEmpty() const{re
  3. 所属分类:C++

    • 发布日期:2010-05-14
    • 文件大小:596992
    • 提供者:zhongyuan2810
  1. 《Visual C++ 6.0实例教程》源代码

  2. #include "stdafx.h" #include "SampleSDI.h" #include "MainFrm.h" #include "SampleSDIDoc.h" #include "SampleSDIView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif
  3. 所属分类:C++

  1. C++ VC.net开发经典斗地主源码

  2. ================================================================================ MICROSOFT 基础类库: GameClient 项目概述 =============================================================================== 应用程序向导已为您创建了此 GameClient 应用程序。此应用程序 不仅介绍了使用 Microsoft 基础
  3. 所属分类:C++

    • 发布日期:2010-05-19
    • 文件大小:730112
    • 提供者:asakao
  1. C++实现五子棋代码

  2. // MainFrm.cpp : implementation of the CMainFrame class // #include "stdafx.h" #include "五子棋.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif HCURSOR m_hcursor; /////////////////
  3. 所属分类:C++

    • 发布日期:2010-05-28
    • 文件大小:520
    • 提供者:qq391058928
  1. StdAfx.h 下载

  2. StdAfx.h下载 stdafx.h : include file for standard system include files, or project specific include files that are used frequently, but are changed infrequently
  3. 所属分类:C

    • 发布日期:2010-10-14
    • 文件大小:1024
    • 提供者:gykthh
  1. 免费下载C++头文件<stdafx.h>

  2. stdafx.h : include file for standard system include files, or project specific include files that are used frequently, but are changed infrequently。 找资源的时候到处都是积分兑换,无奈自己只能摸索一下,尽微薄之力提供便利。
  3. 所属分类:C/C++

    • 发布日期:2020-05-20
    • 文件大小:6144
    • 提供者:weixin_41512747
« 12 3 4 5 6 7 8 9 10 ... 25 »