Answer:
The answer is 2,3,4 and the next one is 1,2 and 4
Explanation:
Just did it
EDG 2021
A dollar sign after both the letter and the number for each cell reference you want to keep the same will keep it the same when using the fill down/across function.
Answer:
280
Explanation:
Average = (240 + 315 + 290 + 180 + 375) ÷ 5
= 1400 ÷ 5
= 280
Cheers
This is to much work for 5 points cmon
Answer:
Code to the answer is shown in the explanation section
Explanation:
import java.util.Scanner;
public class Question {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
System.out.println("Please enter the days of the month: ");
int daysOfMonth = scan.nextInt();
int minuteOfMonth = daysOfMonth * 60 * 24;
System.out.println(minuteOfMonth);
}
}
// 60 represents the number of minutes in one hour
// 24 represents the number of hours in a day