代码搜索:C语言代码
找到约 10,000 项符合「C语言代码」的源代码
代码结果 10,000
www.eeworm.com/read/218913/14902909
txt 代码.txt
#include
using namespace std;
int count=0;
void main()
{
int i,j; count++;
int a[4][4]={{1,2,3,4},{3,4,5,6},{5,6,7,8},{4,5,6,7}}; count++;
int b[4][4]; count++;
for
www.eeworm.com/read/218052/14940606
txt 代码.txt
int fileNum = 0;
///
/// 获取某目录下的所有文件(包括子目录下文件)的数量
///
///
///
public int GetFileNum(string srcPath)
{
try
{
// 得
www.eeworm.com/read/218051/14940608
txt 代码.txt
using System;
using System.Data;
using System.Data.SqlClient;
using System.Web.UI.HtmlControls;
using System.Drawing.Imaging;
using System.Configuration;
using System.Drawing;
namespace zhuan
www.eeworm.com/read/211930/15170547
txt 代码.txt
前言
这是在学习C#的代理和事件时写的一个例子,供大家参考。
正文
代理和事件,我们在编程过程中也许会经常用到,尤其是编写windows应用程序时。在C和C++里我们都知道有函数指针的概念,在.Net中,函数指针则是以代理的形式出现的,代理比函数指针更安全。在.Net中,事件的实现就是以代理为基础的。
下面我们来做个小例子,看一看代理和事件的实现过程 ...
www.eeworm.com/read/210883/15190274
txt 代码.txt
;DS1302+AT89C2051的LED钟
;遥控器各按键数据码,可根据不同的遥控器修改对应的键码
muteM EQU 10h ;静音键 闹铃开/关
timerT EQU 0Ch ;菜单键 进入/退出设置状态
leftL EQU 46h
www.eeworm.com/read/26832/969885
txt 代码.txt
;DS1302+AT89C2051的LED钟
;遥控器各按键数据码,可根据不同的遥控器修改对应的键码
muteM EQU 10h ;静音键 闹铃开/关
timerT EQU 0Ch ;菜单键 进入/退出设置状态
leftL EQU 46h
www.eeworm.com/read/309836/3703356
txt 代码.txt
Ex6_9.jsp(和tom2.jsp,jerry1.jsp)
您的session对象的ID是:
输入你的姓名连
www.eeworm.com/read/394802/8206240
doc 代码.doc
www.eeworm.com/read/369636/9637558
txt 代码.txt
#include "string.h"
#include "iostream.h"
#define M 5 //总进程数
#define N 3 //总资源数
#define FALSE 0
#define TRUE 1
//M个进程对N类资源最大资源需求量
int MAX[M][N]={{6,4,5},{2,5,1},{4,2,5},{3,2,4},{1,2,4}};