代码搜索结果

找到约 10,000 项符合 LED Matrix 的代码

matrix.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "Matrix"=".\Matrix.d

matrix.plg

Build Log --------------------Configuration: Matrix - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\rommel

matrix.cpp

#include "iostream" using namespace std; ////////////////////////////////////////////////////////////////////// // Matrix.cpp // // 操作矩阵的类 CMatrix 的实现文件 // ////////////////////////

matrix.h

#ifndef MATRIX_H #define MATRIX_H class Matrix { public: Matrix( int = 0 ,int = 0 ); Matrix( const Matrix& ); ~Matrix(); int getr(); int getc(); int gete( int, int )

matrix.cpp

#include #include #include using namespace std; #include "Matrix.h" Matrix::Matrix( int r, int c ) : row( r ), col( c ) { ptr = new int[ row * col ]; for

matrix.h

// Matrix.h: interface for the CMatrix class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_MATRIX_H__BF29AB98_8F8D_4BBC_8171_4ADD41EE27F9__INCLUDED_)

matrix.cpp

// Matrix.cpp: implementation of the CMatrix class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "Matrix.h" #include "iostream.h" #inc

matrix.h

////////////////////////////////////////////////////////////////////// // Matrix.h // // 操作矩阵的类 CMatrix 的声明接口 // // 周长发编制, 2002/8 ////////////////////////////////////////////////////////////////

matrix.cpp

////////////////////////////////////////////////////////////////////// // Matrix.cpp // // 操作矩阵的类 CMatrix 的实现文件 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////