Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need your help in writing the code in a completely different way. Don't just change the names, variables, or locations. I need to write

I need your help in writing the code in a completely different way. Don't just change the names, variables, or locations. I need to write the whole code in a radically different way with everything because of plagiarism in this code.

(This code is written by JAVA language )

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- This is the code written below:-

//get region index by name String reg = in.next(); //loop throug all regions in the Array and return the index int regIndex = FindRegion(region, reg);

//get City index by name String City = in.next();

//loop throug all City in the Array and return the index int CityIndex = FindCity(Citise, regIndex, City);

int D3Length = in.nextInt();

Years[regIndex][CityIndex] = new String[D3Length]; population[regIndex][CityIndex] = new int[D3Length]; WaterU[regIndex][CityIndex] = new long[D3Length];

out.println("[Command] add_population"); out.println(" -> Region: " + region[regIndex]); out.println(" -> City: " + Citise[regIndex][CityIndex]); out.println(" ------------------------------------------------------------------------");

out.printf(" %-12s%-15s%s ", "Year", "Population", "Annual Water Usage (cb.m)"); for (int i = 0; i < D3Length; i++) {

String Year = in.next(); int Pop = in.nextInt(); long WU = in.nextLong();

Years[regIndex][CityIndex][i] = Year;

population[regIndex][CityIndex][i] = Pop;

WaterU[regIndex][CityIndex][i] = WU;

out.printf(" %-12s%,-15d%,d ", Year, Pop, WU);

} out.println(" ------------------------------------------------------------------------ ");

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

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

4th Edition

0805360476, 978-0805360479

More Books

Students also viewed these Databases questions

Question

Mention the bases on which consumer market can be segmented.

Answered: 1 week ago

Question

Explain consumer behaviour.

Answered: 1 week ago

Question

Explain the factors influencing consumer behaviour.

Answered: 1 week ago

Question

8. How would you explain your decisions to the city council?

Answered: 1 week ago