代码搜索结果

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

matrix.h

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

matrix.cpp

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

matrix.h

#define SIZE 4 class Matrix { public: Matrix(); void ADD(Matrix&,Matrix&); void Input(); void Output(); private: int matrix[SIZE][SIZE]; };

matrix.dsp

# Microsoft Developer Studio Project File - Name="Matrix" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Co

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 Results Matrix.exe - 0 erro

matrix.cpp

#include using namespace std; #include "Matrix.h" Matrix::Matrix() { for(int i=0;i

matrix.h

#ifndef Matrix_ #define Matrix_ #include "xcept.h" template class Matrix { friend ostream& operator