Boa noite, eu preciso fazer um programa onde o usuário ira digitar o quantas notas quer digitar e logo em seguida as digita-las, e não tenho ideia de como fazer calculo da media. Eu comecei usar a linguagem JAVA agora, então caso alguém puder me ajudar, obrigado desde já!!!
import java.io.Console;
import java.util.Scanner;
class Main {
public static void main (String[] args){
Scanner sc = new Scanner(System.in);
System.out.println("Entre com a quantidade de notas desejada:");
int quantidadeNotas = sc.nextInt();
String[] notas = new String[quantidadeNotas];
for (int i = 0; i < quantidadeNotas; i++){
System.out.println ("Digite a nota " + (i+1));
notas[i] = sc.next();
}
/*APRESENTAÇÃO DAS NOTAS DIGITADAS
System.out.println("Notas ");
for (int i = 0; i < quantidadeNotas; i++){
System.out.println (notas[i]); }*/
}
}