Answer:
if it's allowed, jorge should print his essay at school. he can also explain the situation to his teacher.
Explanation:
jorge printing his essay using his neighbor's printer would be unreliable because of her flaky internet connection, and jorge doesn't have a printer himself. since he's also getting late for school, he doesn't have many options and seems like he has no other option but to get to school before he's late and print it there instead.
C. Healing brush
That’s the answer
Metaphors are considered in a presentation as a statement that considers one idea in terms of another. This literary use has a deeper function as it entertains and motivates our minds. Therefore, metaphors are a great tool in presentations. They help with simplifying ideas, and make concepts easier to understand. Metaphors bring a creative touch to the content of the presentation, as well. Especially in multimedia, where you have visual metaphors to stir up the audiences senses t the content being presented.
Have you tried restarting your internet yet? I'm not very skilled with stuff like this, but my dad sometimes does that if nothing else is working.
Hope you can figure it out!
Answer:
import java.util.Arrays;
import java.util.Scanner;
public class LatinHire {
public static void main(String[] args) {
Scanner in = new Scanner (System.in);
System.out.println("Enter Five integers");
int num1 = in.nextInt();
int num2 = in.nextInt();
int num3 = in.nextInt();
int num4 = in.nextInt();
int num5 = in.nextInt();
int [] intArray = {num1,num2,num3,num4,num5};
System.out.println(Arrays.toString(intArray));
System.out.println("The Maximum is "+returnMax(intArray));
System.out.println("The Minimum is "+returnMin(intArray));
}
public static int returnMax(int []array){
int max = array[0];
for(int i=0; i<array.length; i++){
if(max<array[i]){
max= array[i];
}
}
return max;
}
public static int returnMin(int []array){
int min = array[0];
for(int i=0; i<array.length; i++){
if(min>array[i]){
min= array[i];
}
}
return min;
}
}
Explanation:
- This is implemented in Java Programming Language
- Two Methods are created returnMax(Returns the Maximum Value of the five numbers) and returnMin(Returns the minimum of the five numbers)
- In the Main method, the user is prompted to enter five numbers
- The five numbers are saved into an array of integers
- The returnMax and returnMin methods are called and passed the array as parameter.
- The entire array of numbers inputted by the user as well the Max and Min are printed