最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

假设有一个长度为5的数组其中值为1,3,-1,5,-2现创建一个新的数组要求新数组中的值是原数组的逆序并且如果原数组的值小于0则在新数组中把小于0的值变成0

互联网 admin 29浏览 0评论

假设有一个长度为5的数组其中值为1,3,-1,5,-2现创建一个新的数组要求新数组中的值是原数组的逆序并且如果原数组的值小于0则在新数组中把小于0的值变成0

int []array=new int[] {1,3,-1,5,-2};int []newarray = new int[array.length];for(int q=0;q<array.length;q++) {newarray[q]=array[array.length-1-q];if(newarray[q]<0) {newarray[q]=0;}}for(int r:newarray) {System.out.println(r);}

假设有一个长度为5的数组其中值为1,3,-1,5,-2现创建一个新的数组要求新数组中的值是原数组的逆序并且如果原数组的值小于0则在新数组中把小于0的值变成0

int []array=new int[] {1,3,-1,5,-2};int []newarray = new int[array.length];for(int q=0;q<array.length;q++) {newarray[q]=array[array.length-1-q];if(newarray[q]<0) {newarray[q]=0;}}for(int r:newarray) {System.out.println(r);}
TypeError: array_keys(): Argument #1 ($array) must be of type array, null given in /www/wwwroot/www.usbmi.com/tmp/view_template_d8_htm_read.htm:240 Stack trace: #0 /www/wwwroot/www.usbmi.com/tmp/view_template_d8_htm_read.htm(240): array_keys() #1 /www/wwwroot/www.usbmi.com/tmp/route_read.php(204): include('...') #2 /www/wwwroot/www.usbmi.com/tmp/index.inc.php(129): include('...') #3 /www/wwwroot/www.usbmi.com/index.php(29): include('...') #4 {main}