public class DoSomeMoreMath { public static void main(String[] args) { int x; int y; x = 17; y = 23; printSum(x,y); printProd(x,y); printQuot(x,y); printQuot(y,x); } public static void printSum(int first, int second){ System.out.println(first+second); } //The following is valid, but the naming of the parameters // might be confusing. public static void printProd(int alpha, int beta){ System.out.println(alpha*beta); } //The following is valid, but the naming of the parameters // is not consistent and thus very poor style. public static void printQuot(int alpha, int second){ System.out.println(alpha/second); } } //Copyright 2010-2017 : Evan Golub