- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建一个程序,该程序将创建一个数组,用户将在其中输入行数和列数,然后代码将使用 0 到 100 之间的随机数填充该数组。Visual Studio 在代码,但是当我输入列的值时应用程序崩溃并且应用程序显示:“未处理的异常:System.RankException:此处仅支持单维数组。”
我不确定哪里出错了,但如果有人能指出正确的方向,我将不胜感激。谢谢。
using System;
using System.Collections;
namespace RandomNumberApp
{
class RandomNumberApp
{
static void Main()
{
//variables
int row = 0,
column = 0,
largestRandom = 0,
maxX = 0,
maxY = 0;
//method calls
row = GetRow(row);
column = GetColumn(column);
int[,] randomArray = new int[row, column];
FillArray(row, column, randomArray);
largestRandom = GetLargestNumber(ref randomArray, row, column, out maxX, out maxY);
DisplayResults(randomArray, largestRandom, maxX, maxY);
//determine whether user wants to run the program again
Console.WriteLine("Do you want to create another array?");
Console.WriteLine("Press 'Y if yes; 'N' if no");
char userResponse;
userResponse = Convert.ToChar(Console.ReadLine());
if (userResponse == 'Y' || userResponse == 'y')
Main();
}
//method to ask the user to enter the row size for the array
static int GetRow(int row)
{
//variables
string rawRow;
Console.Write("Please enter the number of rows for your array: ");
rawRow = Console.ReadLine();
row = Convert.ToInt32(rawRow);
return row;
}
//method to ask the user to enter the column size for the array
static int GetColumn(int column)
{
//variables
string rawColumn;
Console.WriteLine("\nPlease enter the number of columns for your array: ");
rawColumn = Console.ReadLine();
column = Convert.ToInt32(rawColumn);
return column;
}
//method to fill the array with random numbers
static int[,] FillArray(int row, int column, int[,] randomArray)
{
//creates a random variable to fill the array
Random randFill = new Random();
//loop to fill the array with random numbers
for (int i = 0; i < row; i++)
{
for (int j = 0; j < column; j++)
{
randomArray[i, j] = randFill.Next(0, 100);
}
}
return randomArray;
}
//method to find the largest number
static int GetLargestNumber(ref int[,] randomArray, int row, int column, out int maxX, out int maxY)
{
int max = int.MinValue;
maxX = -1;
maxY = -1;
for (int x = 0; x < column; x++)
{
for (int y = 0; y < row; y++)
{
if (randomArray[x, y] > max)
{
max = randomArray[x, y];
maxX = x;
maxY = y;
}
}
}
return max;
}
//method to display the results
static void DisplayResults(int[,] randomArray, int largestRandom, int maxX, int maxY)
{
//display the array elements in a list
for (int i = 0; i < randomArray.GetLength(0); i++)
for (int j = 0; j < randomArray.GetLength(1); j++)
Console.WriteLine("{0,-3}", randomArray[i, j]);
Console.WriteLine("\nLargest Number In Array: " + largestRandom);
Console.WriteLine(String.Format("\nIndex Of Largest Number:\nX: {0}\nY: {1}\n ", maxX, maxY));
}
}
}
最佳答案
int[,] randomArray = new int[row, column];
那不是锯齿状数组,那是二维数组。Jagged Arrays 可以通过定义
int[][]
...看看 msdn's关于锯齿状数组的文章
也许我可以推荐
List<List<int>>
或
List<int[]>
供您使用。
关于具有用户定义的行数和列数的 C# 交错数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30005050/
您如何计算Oracle表中的列数? 最佳答案 SELECT count(*) FROM user_tab_columns WHERE table_name = 'FOO' 应该给你foo中的列数。您可
我有一个宽度为 100% 的 div,里面有大约 10 张图片,所有图片的宽度和大小都不同。我希望能够无缝地将这些图像彼此 float ,我已经做到了,但它们不会在屏幕上拉伸(stretch),它们都
请看下面的代码,表格应该根据下面selected id选项中选择的输入更改行数,但只读取select id的第一个值,行数不会根据选择,你能指出我代码中的错误吗? http://jsfiddle.ne
我需要一个可以在 3×3 和 4×4 之间切换的动态 gridlayout。我可以 setRowCount 和 setColumnCount 从 3 到4 但不是从 4 到 3。它会显示以下问题: C
这里有一个没有真正答案的类似问题:CSS columns bug — 5 column count only showing 4 (with images) 我正在使用 column-count 来显
我正在尝试找到一种方法来填充摊销时间表,如下所示。 我目前使用的公式是: =IF($B2=$1:$1,$A2/$C2," ") 但是,这仅填充了第一个点(“起点”),我想做的是根据摊销期抵消这一点。期
我运行以下代码: import cv2 import numpy as np img_file='pokemon.jpg' img=cv2.imread(img_file) # print tota
我正在使用 asp.net 和 vb。这里我将数据绑定(bind)到Gridview。该数据集有 5 条记录,3 列,并且 gridview 显示 5 条记录,3 列。但 Gridview.colum
我已经为我的数据库苦苦挣扎了一段时间,几乎不可能找到我的老师。我的代码如下: INSERT INTO `database28`.`activity` VALUES ("Stefan", 1.1.2.2
我有一个执行 SQL 命令的 python 脚本,并尝试将所有数据插入表中。问题是我有一个条目列表,例如: "Bob", "bob@gmail.com" "John", "john@gmail.com
有谁知道这是否可以通过 bootstrap mixins 来完成。 列(父级数) 像什么Neat有。 在 Neat the Columns 中,mixins 的工作方式如下 @mixin span-c
我有这样的网址:http://xn----7sbabhi8cwaajmue5o.xn--p1ai/cars/search/by_man_and_model?by_manufacturer=115 你可
使用 Bootstrap 3,我正在寻找一种网格布局,其中列宽在任何屏幕分辨率下都是固定的(比如 200 像素),但它们的数量取决于屏幕宽度。 换句话说,我知道列的宽度,但我不知道每行有多少列,因为这
public class SmallestColumn2{ public static void main(String[] args){ int [][] smallest
如果我只有 9 列,但我想将它们分散到 100% 的 div。如何做到这一点? NSW VIC QLD WA SA TAS ACT N
我想在这里更改列的顺序: #container { position: relative; width: 600px; } #column-wrapper { -webkit-
1、df=DataFrame([{‘A':'11','B':'12'},{‘A':'111','B':'121'},{‘A':'1111','B':'1211'}])
我想将csv文件形式的数据导入表中。[使用Oracle SQL Developer]。我有数百个文件,每个文件有大约50列。 从SQL * Loader Wiki(http://www.orafaq.
好吧,这对我来说似乎很基础,尽管我找不到任何关于如何实现它的信息。 假设我有某种 QGridLayout 包含相同大小的小部件。现在我想根据布局大小更新其行数/列数。 因此,例如在相对较宽的屏幕上它看
我在 https://cwiki.apache.org/confluence/display/Hive/Home 中找不到任何记录在案的限制。 我的猜测是行数或列数没有限制。文件大小受文件系统限制。通
我是一名优秀的程序员,十分优秀!