Using the computational language in JAVA it is possible to write a code that at least passes an unspecified number of integers
class Exercise07_21
{
public static void main(String args[])
{
int sum=0;
for(int i=0;i<args.length;i++)
sum=sum+Integer.parseInt(args[i]);//converting string to integer and then adding it with sum variable and storing back in sum
System.out.println("The total is "+sum);//printing the sum
}
}
See more about JAVA code at brainly.com/question/12975450
#SPJ1