Question: please help me write this in java please. here is what is written so far. public class Main { public static void main(String[] args) {
please help me write this in java please.
here is what is written so far. public class Main { public static void main(String[] args) { String[] student = { "joe", "mike", "bill" }; int[][] exams = { {55, 75, 47}, {77, 83, 91}, {99, 95, 85} }; //compute the average for each student. //print the student's name and average. } }
You are given a one dimensional array containing names of students and a two-dimensional array containing exam scores for each student. Each row contains the exam scores for each student. Using these two arrays, compute grades for each student
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
