Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fix the code in Oops2.java so that it is better structured and avoids redundancy. There are some lines of code that are repeated. Think about

Fix the code in Oops2.java so that it is better structured and avoids redundancy. There are some lines of code that are repeated. Think about where you can move the repeated lines in the code so that they only appear once. You do not need to add any error checking on the user input, assume that the user will always enter 1 or 2. Here is the code:

import java.util.Scanner;

public class Oops2 { public static void main(String[] args) {

int sum = 0; int count = 0; int total = 0;

Scanner console = new Scanner(System.in);

System.out.print("Is your money multiplied 1 or 2 times?"); int times = console.nextInt(); if (times == 1){ System.out.print("And how much are you contributing? "); int donation = console.nextInt(); sum = sum + donation; count++; total = total + sum; } if (times == 2){ System.out.println("And how much are you contributing? "); int donation = console.nextInt(); sum = sum + 2 * donation; count++; total = total + sum; } System.out.println("The total is " + total); } }

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

More Books

Students also viewed these Databases questions

Question

Be familiar with the basic ways to manage capacity.

Answered: 1 week ago