Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public static void main(String[] args) { int n = Integer. parseInt (args[0]); assert (n > 0); // Assertion 1 assert (n + (n-1)/9 == n

public static void main(String[] args) {

int n = Integer.parseInt(args[0]);

assert (n > 0); // Assertion 1

assert (n + (n-1)/9 == n + (n-1)/9) && (n > 0); // Assertion 2

int b = n;

assert (b + (n-1)/9 == n + (n-1)/9) && (n > 0); // Assertion 3

int c = n;

assert (b + (c-1)/9 == n + (n-1)/9) && (c > 0); // Assertion 4

while (c >= 10) {

assert (b + (c-1)/9 == n + (n-1)/9) && (c > 0) && (c >= 10); // Assertion 5

assert ((b+1) + ((c-9)-1)/9 == n + (n-1)/9) && (c-9 > 0); // Assertion 6

c = c - 9;

assert ((b+1) + (c-1)/9 == n + (n-1)/9) && (c > 1); // Assertion 7

b = b + 1;

assert (b + (c-1)/9 == n + (n-1)/9) && (c > 0); // Assertion 8

}

assert (b + (c-1)/9 == n + (n-1)/9) && (c > 0) && (c < 10); // Assertion 9

assert (b == n + (n-1)/9); // Assertion 10

System.out.printf("b = %d ", b);

}

}

To enable assertions checking, we give the command with the -ea option.

For Assertion 1, we do not need to prove its correctness, taking it for granted that it holds

Next, it is clear that Assertion 2 follows from Assertion 1.

Given the Assertion 2 holds, argue that Assertion 3 holds after executing the statement int b = n;.

How do we argue? How does it execute int b=n; if assertion 2 holds?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional SQL Server 2000 Database Design

Authors: Louis Davidson

1st Edition

1861004761, 978-1861004765

More Books

Students also viewed these Databases questions

Question

Question Can a Keogh plan fund be reached by the owners creditors?

Answered: 1 week ago

Question

Question What happens to my plan if I die?

Answered: 1 week ago