Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication3dz;
- /**
- *
- * @author Admin
- */
- public class JavaApplication3DZ {
- /*
- Задача5
- 5) Создать метод который выводит элементы двумерного массива в виде текстовой таблицы
- public static void printArray(String[][] arr){
- }
- Пример вывода для данного массива - параметра метода printArray
- String[][] arr = {
- {"A", "B", "C"},
- {"D", "E", "F"}
- }
- Результат работы метода printArray на экране:
- A B C
- D E F
- */
- public static void printArray(String[][] arr) {
- System.out.println("printArray:");
- for (int i = 0; i < arr.length; i++) {
- for (int j = 0; j < arr[i].length; j++) {
- System.out.print(arr[i][j] + " ");
- }
- System.out.println();
- }
- }
- //
- public static void main(String[] args) {
- // TODO code application logic here
- String[][] arr = {
- {"A", "B", "C"},
- {"D", "E", "F"}
- };
- //
- printArray(arr);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement