Advertisement
sergAccount

Untitled

Aug 16th, 2020
2,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.34 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. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {
  13.    
  14.     public static void printValue(int value){
  15.         System.out.println("value=" + value);
  16.     }    
  17.     // метод printValues с произвольным количеством параметров
  18.     // values - параметр метода
  19.     public static void printValues(int ... values){
  20.         // выводим размерность (длину) массива
  21.         System.out.println("values.length=" + values.length);          
  22.         // fori+tab                
  23.         for (int i = 0; i < values.length; i++) {
  24.             System.out.println("value=" + values[i]);
  25.         }
  26.     }
  27.    
  28.     // main + tab
  29.     public static void main(String[] args) {
  30.         //
  31.         // 1) вызов метода printValues с одним значением типа int
  32.         printValues(10);
  33.         // 2) вызов метода printValues с двумя значениями типа int
  34.         printValues(10, 11);
  35.         // ...
  36.         printValues(10, 11, 12, 13);
  37.         // 4)
  38.         printValues();
  39.        
  40.        
  41.     }
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement