while I am running program that asks for input(double datatype) from user and displays their average in NetBeans
System.out.println("Enter three numbers: ");
double num1 = sc.nextDouble();
double num2 = sc.nextDouble();
double num3 = sc.nextDouble();
double avg = (num1+num2+num3)/3.0;
System.out.println("The average of numbers " + num1 +" , " + num2 + " and " + num3 + " is :" + avg);```
question from:https://stackoverflow.com/questions/65642574/system-modules-path-not-set-in-conjunction-with-source-14