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 com.mycompany.ex16;
- public class Main3 {
- /*
- Задача 2
- Определить метод, который в качестве параметра принимает массив элементов
- типа boolean
- Метод должен вернуть (вычислить) количество элементов с значением = true.
- Метод должен возвращать значение типа int.
- Проверить данный метод вызвать его в методе main и вывести полученный результат
- на экран
- */
- public static int numberOfTrue(boolean[] arr) {
- int result = 0;
- for (int i = 0; i < arr.length; i++) {
- if (arr[i]) {
- result++;
- }
- }
- return result;
- }
- public static void main(String[] args) {
- boolean[] arr = {true, false, true};
- int result = numberOfTrue(arr);
- System.out.println("result=" + result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement