Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 398 Weeks Ago, 2 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Computer Science Posted 25 Aug 2017 My Price 9.00

Hard copy of the source code

For each of the programs assigned below, submit the following:

  • Hard copy of the source code.
  • Hard copy of sample executions (black or, preferably, white screen).

Copy of the source code (.c ) saved as an electronic attachment to C Assignment 6 located in Oncourse under Assignments.

 

Observe the usual guidelines regarding the initial comment section, indenting, and so on. In addition,

  • In if-else statements, indent statements to be executed for if or else condition three spaces. Align else or else if with corresponding if.
  • Indent statements within loops. Indent nested loops.

 

1. Write a program to find the approximation of ln(2) using the following formula for m+1 terms:

where n = 0, 1, 2, … m

 

Prompt the user to enter the number of terms (between 10 and 50 inclusive) to be used in the approximation. Use a while validation loop to assure that the number of terms is in the proper range. Use a for loop to calculate each term in the sum and while doing so, to print a table. Each line of the table should include the term (value of n) number, the value of the term added to the sum at that iteration accurate to 5 decimal digits, and the value of the sum at that iteration also printed with 5 decimal digits. If there are 20 terms, they will be numbered 0 through 19. Use doubles for the term and sum approximation values. At the end of the program print the final value of the sum and also the actual value of ln(2) from the C library using 5 decimal digits.

 

2. Write a program to calculate the factorial of a number. The factorial n! of a positive number (integer) is defined by n! = n*(n-1)*(n-2)*…*3*2*1, where 0! = 1.

 

In function main prompt the user for a non-negative integer less than 20 for which the factorial is to be found. Use a while validation loop to assure the number entered is in the proper range. Then call a function to calculate the factorial. The input to the function is the integer n and the return value is n factorial. Use data type double for the factorial. In the function use a for loop to calculate the factorial. Make provision for the situation in which n = 0. Return the value of n factorial to function main and print. Test with n = 14.

 

 

3. Write a program to find the largest and second largest of 10 random numbers. Declare variables. Seed the random number generator with the time of day. Initialize the variables for largest and second largest. On each pass through a for loop

  • Generate a random integer between 1 and 50 and print it.
  • Check to see if it is larger than the maximum. If it is a new maximum, reassign the second largest. If it is not a new maximum, check to see if it is larger than the second largest.

Upon exiting the loop, print the largest and second largest values.

Answers

(5)
Status NEW Posted 25 Aug 2017 03:08 PM My Price 9.00

Hel-----------lo -----------Sir-----------/Ma-----------dam-----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------and----------- ac-----------qui-----------sit-----------ion----------- of----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n.P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)