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;
- /**
- *
- * @author student
- */
- public class Main4 {
- /*
- Задача 3 (дополнительно)
- Создать метод который заполняет массив элементов типа double определенным числом (параметр метода)
- У данного метода должно быть два параметра (массив типа double и значение типа double)
- Метод должен возвращать значение типа void.
- Проверить данный метод вызвать его в методе main
- */
- //
- public static void fillArray(double[] source, double value){
- // fori+tab
- for (int i = 0; i < source.length; i++) {
- source[i] = value;
- }
- }
- //
- public static void main(String[] args) {
- double[] arr = {1.1, 3.3};
- fillArray(arr, 10);
- for (int i = 0; i < arr.length; i++) {
- System.out.println("arr[i]=" + arr[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement