Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
413 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...