C#:求解完整程序代码:创建一个5×5 的数组,输出其主对角线和辅对角线上的元素值。

 我来答
现在还是菜鸟
2012-04-19 · 超过12用户采纳过TA的回答
知道答主
回答量:25
采纳率:0%
帮助的人:37.7万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 输出矩阵主辅对角线上的元素值
{
class Program
{
static void Main(string[] args)
{
int[,] arr = new int[5, 5];//元素类型根据需要改变
Console.WriteLine("请向数组中输入元素:");
for (int i = 0; i < 5; i++)
for (int j = 0; j < 5; j++)
arr[i, j] = int.Parse(Console.ReadLine());
Console.WriteLine("主对角线的元素值依次为:");
for (int i = 0; i < 5; i++)
{
int j = i;
Console.Write("{0}\t", arr[i, j]);
}
Console.WriteLine();
Console.WriteLine("辅对角线的元素值依次为:");
for (int i = 0; i < 5; i++)
{
int j = 4 - i;
Console.Write("{0}\t", arr[i, j]);//输出顺序是从右下到左上
}
}
}
}
测试过,符合要求且无异常(在没有输入错误的情况下)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式