简单算法
文章平均质量分 64
wsc30
学学习
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
计算矩阵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 · 8028 阅读 · 0 评论 -
输出二维矩阵
// 功能: 输出矩阵 // 参数: // matrixX : 待打印的矩阵 // rowCount : 矩阵的行数 // columnCount : 矩阵的列数 private static void outputMatrix(int[,] matrixX, int rowCo转载 2017-04-17 16:33:09 · 804 阅读 · 0 评论 -
交错数组的输出
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 · 948 阅读 · 0 评论
分享