I've managed to get the marks from the exam and coursework to add up together and get an average. I realized this is what needs to happen.
computed module mark = ((coursework mark * coursework weighting) + (examination mark * (100 - coursework weighting))) / 100
So, I need to make 2 arrays (if I'm correct), each having the weighting of each module, then do those calculations. How do I add an array to an array that already exists? This is what I have so far:
public static void main (String [] args)
{
computeResults();
}
public static void part1 (){
double examMarks [] = {50,40,60,80,70,11};
double courseworkmarks [] = {65,49,58,77,35,40};
System.out.println ("These are the exam marks and the course work marks");//First row is the exam marks, second row is the course work marks
computeMarks (examMarks);
computeMarks1 (courseworkmarks);
}
public static void computeMarks(double[] examMarks)
{
for (int row=0;row<examMarks.length;row++){
System.out.print (examMarks[row] +"\t");
}
System.out.println();
}
public static void computeMarks1(double[] courseworkmarks)
{
for (int row=0;row<courseworkmarks.length;row++){
System.out.print (courseworkmarks[row] +"\t");
}
System.out.println();
}
public static void computeResults()
{
double examMarks [] = {50,40,60,80,70,11};
double courseworkmarks [] = {65,49,58,77,35,40};
double avgMarks[] =new double[examMarks.length];
for(int i=0;i<avgMarks.length;i++){
avgMarks[i]=(examMarks[i]+courseworkmarks[i])/2;
System.out.println(avgMarks[i]);
}
}
}