You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private static void printSum(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j)
{
int sum = a + b + c + d + e + f + g + h + i + j;
System.out.println("The values of a through j are: " + a + ", " + b + ", " + c + ", " + d + ", " + e + ", " + f + ", " + g + ", " + h + ", " + i + ", " + j);
System.out.println("This sum of a through j is: " + sum);