Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 studentStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started