Answer:
import java.util.Scanner;
public class IntegerExpressions {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter firstInt: ");
int firstInt = input.nextInt();
System.out.print("Enter secondInt: ");
int secondInt = input.nextInt();
System.out.print("Enter thirdInt: ");
int thirdInt = input.nextInt();
double firstResult = (firstInt + secondInt) / (double) thirdInt;
double secondResult = (secondInt * thirdInt) / (double) (secondInt + firstInt);
int thirdResult = (firstInt * thirdInt) % secondInt;
System.out.printf("First Result = %.2f\\", firstResult);
System.out.printf("Second Result = %.2f\\", secondResult);
System.out.printf("Third Result = %d\\", thirdResult);
}
}
Step-by-step explanation:
In this program, we use a Scanner object to read input from the user. We prompt the user to enter three integers using the System.out.print statement and read the integers using the Scanner.nextInt method.
We then perform the required calculations and store the results in firstResult, secondResult, and thirdResult. The double data type is used for firstResult and secondResult since the results can be decimal values.
Finally, we use the System.out.printf method to output the results in the specified format, with two decimal places for firstResult and secondResult. Each line of output ends with a newline character (\\).