Advertisement
sergAccount

Untitled

Aug 16th, 2020
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.07 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.app12;
  7.  
  8. public class ArrayUtil {
  9.  
  10.     // 1) метод выводит элементы двумерного массива в виде таблицы
  11.     public static void printArray(int[][] array, String delim) {
  12.         //
  13.         for (int i = 0; i < array.length; i++) {
  14.             for (int j = 0; j < array[i].length; j++) {
  15.                 System.out.print(array[i][j]);
  16.                 System.out.print(delim);
  17.             }
  18.             System.out.println();
  19.         }
  20.     }
  21.     // 2) заполняет двумерный массив array значением value - параметр метода  
  22.     public static void fillArray(double[][] array, double value) {
  23.         for (int i = 0; i < array.length; i++) {
  24.             for (int j = 0; j < array[i].length; j++) {
  25.                 array[i][j] = value;
  26.             }        
  27.         }
  28.     }
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement