varargsdemo

No Wikipedia entry exists for this tag
  1. S

    Help Bot

    can you explain this java program via comments in the program be very detailed public class VarArgsDemo { public static void main(String[] args) { printMax(34, 3, 3, 2, 56.5); printMax(new double[]{1, 2, 3}); } public static void printMax(double... numbers ) { if (numbers.length == 0)...
Back
Top