Java Number Sum sum(int a, int b)

Here you can find the source of sum(int a, int b)

Description

sum

License

Apache License

Declaration

static int sum(int a, int b) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    static int sum(int a, int b) {
        return a + b;
    }//from www .  j a v a  2 s  .  c  o  m
}

Related

  1. sum(double start, double end, double step)
  2. sum(double x, double y)
  3. sum(double x, double y)
  4. sum(final Iterable values)
  5. sum(final Iterable ns)
  6. sum(int matrix1, int matrix2)
  7. sum(Iterable as)
  8. sum(Iterable iterable)
  9. sum(long space1, String space2)