- 博客(6)
- 收藏
- 关注
原创 MFC搜索文件
if(strFoldername == _T("")) { return; } else { if(strFoldername.Right(1) != _T("\\")) strFoldername += L"\\"; strFoldername =strFol
2017-08-25 13:50:42
614
原创 c语言简易计算器
用数组写的,比较简单,数据结构没学过。。 #include #include #include #include #define Len 100 #define ERROR 0 #define TRUE 1 typedef int BOOL; void CharSort(char operate[], int k,int i); void NumberSort(double n
2017-08-16 15:03:46
484
转载 交错数组的输出
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication7 { class Program { static void Main(string[] args)
2017-04-17 16:44:47
927
转载 输出二维矩阵
// 功能: 输出矩阵 // 参数: // matrixX : 待打印的矩阵 // rowCount : 矩阵的行数 // columnCount : 矩阵的列数 private static void outputMatrix(int[,] matrixX, int rowCo
2017-04-17 16:33:09
783
转载 计算矩阵A和矩阵B的乘积
for(int i = 0; i { for(int j = 0; j { // 初始化矩阵C matrixC[i,j] = 0; // 计算矩阵A和矩阵B的乘积,并把值存放在矩阵C中
2017-04-17 16:28:25
8002
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人