I really need help in casting from int to double. According to this problem, they want me to write a formula to calculate the average of the 3 grades from the sum using division and typecasting.
Here is my code so far, I don't know why it stays in int mode. Need help in number 5. Thanks
    public class Challenge1_6
    {
     public static void main(String[] args){
   
   // 1. Declare 3 int variables called grade1, grade2, grade3
   // and initialize them to 3 values
       int grade1 = 90;
       int grade2 = 100;
       int grade3 = 94;
   // 2. Declare an int variable called sum for the sum of the grades
   int sum;
  // 3. Declare a variable called average for the average of the grades
    int avg;
  // 4. Write a formula to calculate the sum of the 3 grades (add them up).
    sum = grade1 + grade2 + grade3;
  // 5. Write a formula to calculate the average of the 3 grades from the sum using division and type casting.
       avg =  sum / 3;
  
   
   
  // 6. Print out the average
      System.out.println((double)(avg));