CreatinganIntegerArrayandterminatingwithablank我正在编写一个程序,该程序涉及一次请求用户输入一个随机数量的整数,该输入在用户返回空白后终止。然后将这些整数放入一个数组中,稍后我将使用该数组对整数进行排序。该程序基本上运行如下:12345Enteralistofintegers:>5>0>3>4等...直到用户输入一个空白。然后程序对整数进行排序并打印出来。我的代码片段是:12345678910111213141516staticintGetIntegerArray(intarray[],intmax){ intn,value; n=0; wh