用C#解决一道数据库题目,求人用代码详细解答。 5
1个回答
展开全部
给你个例子,你看看
private static void MatrixTransposition()
{
int[,] matrixA = new int[,] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 } };
int m = matrixA.GetLength(0);
int n = matrixA.GetLength(1);
int[,] matrixB = new int[n, m];
for (int i = 0; i < m; i++)
{
for (int j = 0; j < n; j++)
{
matrixB[j, i] = matrixA[i, j];
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
Console.Write(matrixB[i,j]);
Console.Write(" ");
}
Console.WriteLine();
}
}
private static void MatrixTransposition()
{
int[,] matrixA = new int[,] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 }, { 10, 11, 12 } };
int m = matrixA.GetLength(0);
int n = matrixA.GetLength(1);
int[,] matrixB = new int[n, m];
for (int i = 0; i < m; i++)
{
for (int j = 0; j < n; j++)
{
matrixB[j, i] = matrixA[i, j];
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
Console.Write(matrixB[i,j]);
Console.Write(" ");
}
Console.WriteLine();
}
}
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |