I am confused to code this, please help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I am confused to code this, please help

You are an assistant on a TV show where celebrities are dancing and 4 judges evaluate their performance and give them a score between 1 and 10. The program you are given takes the scores as input. Complete the method to take them as parameters, then calculate and return the average score. Sample Input 6.0 4.0 5.0 3.0 Sample Output 4.5

25th Sep 2021, 4:19 PM
Anitha
4 Answers
+ 4
Add the four inputs and divide it by 4
25th Sep 2021, 4:22 PM
Arun Ruban SJ
Arun Ruban SJ - avatar
+ 3
import java.util.*; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); double score1 = read.nextDouble(); double score2 = read.nextDouble(); double score3 = read.nextDouble(); double score4 = read.nextDouble(); double avgScore = getAverageScore(score1, score2, score3, score4); System.out.println(avgScore); } //create your method here public static double getAverageScore(double a,double b,double c,double d) { double dd = a+b+c+d ; dd=dd/4; return dd; } }
25th Sep 2021, 4:36 PM
Arun Ruban SJ
Arun Ruban SJ - avatar
0
import java.util.Scanner; Arun Ruban SJ How to use the concept here? public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); double score1 = read.nextDouble(); double score2 = read.nextDouble(); double score3 = read.nextDouble(); double score4 = read.nextDouble(); double avgScore = getAverageScore(score1, score2, score3, score4); System.out.println(avgScore); } //create your method here public static double getAverageScore() { } }
25th Sep 2021, 4:27 PM
Anitha
0
import java.util.Scanner; Arun Ruban SJ How to use the concept here? public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); double score1 = read.nextDouble(); double score2 = read.nextDouble(); double score3 = read.nextDouble(); double score4 = read.nextDouble(); double avgScore = getAverageScore(score1, score2, score3, score4); System.out.println(avgScore); } //create your method here public static double getAverageScore() { } }
26th Sep 2021, 3:09 AM
Ruchit Prajapati
Ruchit Prajapati - avatar