Write a progra whether a number is prime

Assignment Help Programming Languages
Reference no: EM131274268

6.1 (Math: pentagonal numbers) A pentagonal number is defined as n(3n-1)/2 for n = 1, 2, . . ., and so on. Therefore, the first few numbers are 1, 5, 12, 22, . . . . Write a method with the following header that returns a pentagonal number:

public static int getPentagonalNumber(int n) Write a test program that uses this method to display the first 100 pentagonal numbers with 10 numbers on each line.

6.2 (Sum the digits in an integer) Write a method that computes the sum of the digits in an integer. Use the following method header:

public static int sumDigits(long n) For example, sumDigits(234) returns 9(2 + 3 + 4). (Hint: Use the % operator to extract digits, and the / operator to remove the extracted digit. For instance, to extract 4 from 234, use 234 % 10 (= 4). To remove 4 from 234, use 234 / 10 (= 23). Use a loop to repeatedly extract and remove the digit until all the digits are extracted. Write a test program that prompts the user to enter an integer and displays the sum of all its digits.

6.3 (Palindrome integer) Write the methods with the following headers // Return the reversal of an integer, i.e., reverse(456) returns 654 public static int reverse(int number)

// Return true if number is a palindrome public static boolean isPalindrome(int number) Use the reverse method to implement isPalindrome. A number is a palindrome if its reversal is the same as itself. Write a test program that prompts the user to enter an integer and reports whether the integer is a palindrome.

6.6 (Display patterns) Write a method to display a pattern as follows:
    1
   2 1
 3 2 1
... n n-1 ..3 2 1

The method header is

public static void displayPattern(int n).

6.10 Write a progra whether a number isPrime(int number) method for testing whether a number is prime. Use this method to find the number of prime numbers less than 10000.

Reference no: EM131274268

Questions Cloud

What is the product of the numbers : Three distinct prime numbers, less than 10 are taken and all the numbers that can be formed by arranging all the digits are taken. Now, difference between the largest and the smallest number formed is equal to 495. It is also given that sum of the di..
Program that plays a commercial video continuously : Determine the type of loop that you would use in your program in order to make the video play continuously. Provide a rationale for your chosen type of loop.
Prepare a draft annotated bibliography : Prepare a draft annotated bibliography. Select a topic, preferably one of your topic interest areas you may pursue for your dissertation. Select 10 articles for the bibliography. The bibliography must have 10 entries critically analyzed, to includ..
Design and code a program including the given classes : Design and code a program including the following classes, as well as a client class to test all the methods coded: A Passenger class, encapsulating a passenger.
Write a progra whether a number is prime : Write a progra whether a number isPrime(int number) method for testing whether a number is prime. Use this method to find the number of prime numbers less than 10000.
Interface for interaction with the operating system : As explained in the textbook, UNIX / Linux initially only provided a command line interface for interaction with the operating system (OS). The introduction of a Graphical User Interface (GUI) to UNIX / Linux OS makes it easier to administer a Lin..
Design a program that asks the user to enter the amount : Design a program that asks the user to enter the amount that he or she has budgeted for a month. Use labels to list expediencies and text boxes to hold the expense (such as housing, entertainment, fuel, power, misc, etc).
Rewrite the given topic in the english language : HMGT 310 - Rewrite the given topic-A growing pol of patients is unable to read and write in the English language. Language is a barrier to effective care delivery as well as patient compliance.
Positive integer n such that the polynomial : For every positive integer b, show that there exists a positive integer n such that the polynomial x^2 - 1 ∈ (Z/nZ)[x] has at least b roots.

Reviews

Write a Review

Programming Languages Questions & Answers

  Enhance the web page the following elements

Ensure required fields First name, Last name are not blank.

  What is the difference between the two statements

What is the difference between the following two statements?

  Utilize branching and looping syntax with parameters

the file"values.txt" with following data: 88 85 89 64 78 85 92 60 91 96 63 59 83 89 74 93 92 92 63 100. write down the program which will give the following output.

  Write a program that uses a random number generator

Write a program that uses a random number generator to generate a two digit positive integer

  Explain and evaluate post-fix expression

Many early calculators used a post-fix entry to perform arithmetic calculations. For example 2 + 3 in in-fix notation would be 2 3 + in post-fix notation. ( 2 + 3 ) * 4, would be 2 3 + 4 *. Utilizing a stack, post-fix expressions are very easily e..

  Create an application to run in the amazon ec2 service

In this project you will create an application to run in the Amazon EC2 service and you will also create a client that can run on local machine and access your application.

  Program to calculate area of two-dimensional shape

Implement the Shape hierarchy shown in following figure. Each TwoDimensionalShape should contain method getArea to calculate the area of the two-dimensional shape.

  Describe two other techniques for validating your document

This week covered validation and the use of validators. Describe at least two other techniques for validating your document that does not involve submitting it through an online validator.

  Create default constructor which invokes superclass

Create a (default) constructor which invokes superclass constructor with value 3 (law school is typically a three year program).

  Write program to instantiate objects of inherited classes

X-Y coordinate pairs for four endpoints of Quadrilateral. Write program which instantiates objects of the classes and outputs each object's area.

  Create a folder for each region name.

Use the attached page/code to create a template with the changes indicated below. Apply the template to a few pages to demonstrate how it's done. Provide any instructions for applying it that weren't given.

  Create a working program for alpha testing

you want to put together the work that has been completed to deliver a working program for alpha testing. You will combine the elements you have written to this point and deliver a working solution.

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