Program to print out all the integers that meet

Assignment Help Business Management
Reference no: EM132141656

Need guidance real quick. How can I modify this program to print out all the integers that meet the requirements not just one of them. At the moment the program just find the largest number of divisors for one integer but I would like to print out all the integers between 1 and 1000 that have the maximum number of divisors.

/**
  * This program finds an integer between 1 and 10000 that has
  * the largest number of divisors.  It prints out the maximum
  * number of divisors and an integer that has that many divisors.
 */

public class MostDivisors {

 public static void main(String[] args) {

   int N;            // One of the integers whose divisors we have to count.
   int maxDivisors;  // Maximum number of divisors seen so far.
   int numWithMax;   // A value of N that had the given number of divisors.

   maxDivisors = 1;  // Start with the fact that 1 has 1 divisor.
   numWithMax = 1;

   /* Process all the remaining values of N from 2 to 10000, and
      update the values of maxDivisors and numWithMax whenever we
      find a value of N that has more divisors than the current value
      of maxDivisors.
   */

   for ( N = 2;  N <= 10000;  N++ ) {

       int D;  // A number to be tested to see if it's a divisor of N.
       int divisorCount;  // Number of divisors of N.

       divisorCount = 0;

       for ( D = 1;  D <= N;  D++ ) {  // Count the divisors of N.
          if ( N % D == 0 )
             divisorCount++;
       }

       if (divisorCount > maxDivisors) {
          maxDivisors = divisorCount;
          numWithMax = N;
       }

   }

   System.out.println("Among integers between 1 and 10000,");
   System.out.println("The maximum number of divisors is " + maxDivisors);
   System.out.println("A number with " + maxDivisors + " divisors is " + numWithMax);

   } // end main()

}

Reference no: EM132141656

Questions Cloud

What percentage of citizen complaints lack merit : What percentage of citizen complaints lack merit? Can we conclude that citizen complaints don’t work simply because the “sustained” rate is low?
Does correlation exist between job description and practice : Public health nursing involves working with communities and populations as equal partners, and focusing on primary prevention and health promotion.
Explain any civil actions in tort or criminal actions : Determine whether Dana has taken Futuretek's intellectual property (IP), and if so, describe the type(s) of IP that was taken.
How co-production strategies work in telenovela industry : Explain how the co-production strategies work in the telenovela industry.
Program to print out all the integers that meet : Need guidance real quick. How can I modify this program to print out all the integers that meet the requirements not just one of them.
Weekly demand for private label washing machines : Weekly demand for private label washing machines at Karstadt, German department store chain, is normally distributed with mean of 500-standard deviation of 300.
Evaluate yourself and your role within your organization : The Individual Learning Project is an opportunity for you to evaluate yourself and your role within your organization by completing 10 self-assessment activitie
What is the concepts of epidemiology and nursing research : Write a paper (2,000-2,500 words) in which you apply the concepts of epidemiology and nursing research to a communicable disease.
Internal and external corporate governance provisions : Internal and external corporate governance provisions and activities can take many forma, including a poison pill provision.

Reviews

Write a Review

Business Management Questions & Answers

  Caselet on michael porter’s value chain management

The assignment in management is a two part assignment dealing 1.Theory of function of management. 2. Operations and Controlling.

  Mountain man brewing company

Mountain Man Brewing, a family owned business where Chris Prangel, the son of the president joins. Due to increase in the preference for light beer drinkers, Chris Prangel wants to introduce light beer version in Mountain Man. An analysis into the la..

  Mountain man brewing company

Mountain Man Brewing, a family owned business where Chris Prangel, the son of the president joins. An analysis into the launch of Mountain Man Light over the present Mountain Man Lager.

  Analysis of the case using the doing ethics technique

Analysis of the case using the Doing Ethics Technique (DET). Analysis of the ethical issue(s) from the perspective of an ICT professional, using the ACS Code of  Conduct and properly relating clauses from the ACS Code of Conduct to the ethical issue.

  Affiliations and partnerships

Affiliations and partnerships are frequently used to reach a larger local audience? Which options stand to avail for the Hotel manager and what problems do these pose.

  Innovation-friendly regulations

What influence (if any) can organizations exercise to encourage ‘innovation-friendly' regulations?

  Effect of regional and corporate cultural issues

Present your findings as a group powerpoint with an audio file. In addition individually write up your own conclusions as to the effects of regional cultural issues on the corporate organisational culture of this multinational company as it conducts ..

  Structure of business plan

This assignment shows a structure of business plan. The task is to write a business plane about a Diet Shop.

  Identify the purposes of different types of organisations

Identify the purposes of different types of organisations.

  Entrepreneur case study for analysis

Entrepreneur Case Study for Analysis. Analyze Robin Wolaner's suitability to be an entrepreneur

  Forecasting and business analysis

This problem requires you to apply your cross-sectional analysis skills to a real cross-sectional data set with the goal of answering a specific research question.

  Educational instructional leadership

Prepare a major handout on the key principles of instructional leadership

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd