Answered step by step
Verified Expert Solution
Question
1 Approved Answer
11. Suppose that a variable a is declared as double a = 3.14159. What do each of the following print? a. System.out.println(a); b. System.out.println(a +
11. Suppose that a variable a is declared as double a = 3.14159. What do each of the following print?
a. System.out.println(a);
b. System.out.println(a + 1);
c. System.out.println(8 / (int) a);
d. System.out.println(8 / a);
e. System.out.println((int) (8 / a));
Explain each outcome.
public class Hw2Ans11
{
public static void main(String[] args)
{
double a = 3.14159;
System.out.println(a);
System.out.println(a + 1);
System.out.println(8 / (int) a);
System.out.println(8 / a);
System.out.println((int) (8 / a));
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started