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 javaapplication4;
- /**
- *
- * @author Admin
- */
- public class JavaApplication4 {
- /*
- Задача1
- Создать двумерный массив значений типа double
- Заполнить его числами
- Создать метод который находит сумму элементов
- двумерного массива
- */
- public static double calcSum(double[][] arr){
- double res = 0;
- for (int i = 0; i < arr.length; i++) {
- for (int j = 0; j < arr[i].length; j++) {
- res += arr[i][j];
- }
- }
- return res;
- }
- /*
- Задача2
- Создать двумерный массив значений типа int
- Заполнить его числами
- Создать метод который находит сумму элементов
- которые находятся на главной диагонали
- */
- public static int calcDiagSum(int[][] arr){
- int res = 0;
- for (int i = 0; i < arr.length; i++) {
- res += arr[i][i];
- }
- return res;
- }
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- // TODO code application logic here
- double[][] arr = {
- {1.0, 2.0},
- {1.0, 2.0}
- };
- double result = calcSum(arr);
- System.out.println("result=" + result);
- int[][] arr2 = {
- {0, 2},
- {3, 8}
- };
- // 1 - [0][0] 4 - [1][1]
- int res = calcDiagSum(arr2);
- System.out.println("res=" + res);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement