Using this program determine the smallest positive integer


1. (a)Write a Java program that displays the value of (a + b) + c and a + (b + c), where a is a float variable, b is the negation of a, and c is 1.0.

(b) Using this program, determine the smallest positive integer n such that assigning a the value 10n causes the expressions (a + b) + c and a + (b + c) to have different values. Your answer should include your program's source code and the output that it produces when executed.

2. Write a single (non-nested) Java statement that displays the following message: "Your shopping cart contains 5 items" Assuming that variable n contains the number of items. If n has the value 1, the statement should display the following message instead: "Your shopping cart contains 1 item" You may not use the if statement or switch statement. Your statement must consist of a single call of System.out.println. Simplify your answer as much as possible.

3. Assume that the C array a has been declared as follows:

int a[N][N];

The following loop initializes the elements of a:

for (int i = 0; i < N; i++)

for (int j = 0; j < N; j++)

a[i][j] = i * N + j;

Rewrite this loop so that (a) it uses a single for statement and (b) it uses a pointer, not two integers, to keep track of which array element is the next to be initialized. The only variable that should appear in your code (other than a itself) is the pointer variable.

Solution Preview :

Prepared by a verified Expert
Business Management: Using this program determine the smallest positive integer
Reference No:- TGS01653506

Now Priced at $30 (50% Discount)

Recommended (94%)

Rated (4.6/5)