Search This Blog(textbook name or author as the keywords)You can cantact me by the Contact Form

8/26/11

engineering problem solving with c, 3rd or 4th edition by delores m. etter solutions manual and test bank

Engineering Problem Solving with C , 4/E solutions manual  Delores M. Etter

  • Instructor Solutions Manual for Engineering Problem Solving in C, 4/E
    Etter & Ingber
    ISBN-10: 0132923742 • ISBN-13: 9780132923743
    ©2013 • Online • Live
    More info
    1. Instructor's Solutions Manual (ZIP) (0.1MB)
      Chapter 2

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_21                                               */
      /*                                                                    */
      /*  This program converts miles to kilometers.                        */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double miles, kilometers;

         /*  Enter number of miles from the keyboard.  */
         printf("Enter the number of miles: \n");
         scanf("%lf",&miles);

         /*  Compute the number of kilometers equal to the specified miles. */
         kilometers = 1.6093440*miles;

         /*  Print the number of kilometers.  */
         printf("%8.3f miles = %8.3f kilometers \n",miles,kilometers);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_22                                               */
      /*                                                                    */
      /*  This program converts meters to miles.                            */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double miles, meters;

         /*  Enter number of meters from the keyboard.  */
         printf("Enter the number of meters: \n");
         scanf("%lf",&meters);

         /*  Compute the number of miles equal to the specified meters.  */
         miles = meters/1609.3440;

         /*  Print the number of miles.  */
         printf("%8.3f meters = %8.3f miles \n",meters,miles);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_23                                               */
      /*                                                                    */
      /*  This program converts pounds to kilograms.                        */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double pounds, kilograms;

         /*  Enter number of pounds from the keyboard.  */
         printf("Enter the number of pounds: \n");
         scanf("%lf",&pounds);

         /*  Compute number of kilograms equal to the specified pounds.  */
         kilograms = pounds/2.205;

         /*  Print the number of kilograms.  */
         printf("%8.3f pounds = %8.3f kilograms \n",pounds,kilograms);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_24                                               */
      /*                                                                    */
      /*  This program converts newtons to pounds.                          */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double pounds, newtons;

         /*  Enter number of newtons from the keyboard.  */
         printf("Enter the number of newtons:  \n");
         scanf("%lf",&newtons);

         /*  Compute number of pounds equal to the specified newtons.  */
         pounds = newtons/4.448;

         /*  Print the number of pounds.  */
         printf("%8.3f newtons = %8.3f pounds \n",newtons,pounds);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_25                                               */
      /*                                                                    */
      /*  This program converts degrees Fahrenheit to degrees Rankin.       */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double degrees_F, degrees_R;

         /*  Enter temperture in degrees Fahrenheit from the keyboard.  */
         printf("Enter the temperature in degrees Fahrenheit:  \n");
         scanf("%lf",&degrees_F);

         /*  Compute the equivalent temperature in degrees Rankin  */
         /*  from the given temperature.                           */
         degrees_R = degrees_F + 459.67;

         /*  Print the temperatures.  */
         printf("%8.3f degrees Fahrenheit = %8.3f degrees Rankin \n",
              degrees_F,degrees_R);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_26                                               */
      /*                                                                    */
      /*  This program converts degrees Celsius to degrees Rankin.          */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double degrees_C, degrees_R, degrees_F;

         /*  Enter temperture in degrees Celsius from the keyboard.  */
         printf("Enter the temperature in degrees Celsius:  \n");
         scanf("%lf",&degrees_C);

         /*  Compute the equivalent temperature in degrees Rankin  */
         /*  from the given temperature.                           */
         degrees_F = (9.0/5.0)*degrees_C + 32;
         degrees_R = degrees_F + 459.67;

         /*  Print the temperatures.  */
         printf("%8.3f degrees Celsius = %8.3f degrees Rankin \n",
              degrees_C,degrees_R);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_27                                               */
      /*                                                                    */
      /*  This program converts degrees Kelvin to degrees Fahrenheit.       */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double degrees_R, degrees_K, degrees_F;

         /*  Enter temperture in degrees Kelvin from the keyboard.  */
         printf("Enter the temperature in degrees Kelvin:  \n");
         scanf("%lf",&degrees_K);

         /*  Compute the equivalent temperature in degrees Fahrenheit  */
         /*  from the given temperature.                               */
         degrees_R = (9.0/5.0)*degrees_K;
         degrees_F = degrees_R - 459.67;

         /*  Print the temperatures.  */
         printf("%8.3f degrees Kelvin = %8.3f degrees Fahrenheit \n",
              degrees_K,degrees_F);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_28                                               */
      /*                                                                    */
      /*  This program finds the area of a rectangle.                       */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double a, b, area;

         /*  Enter the lengths of sides of the rectangle.  */
         printf("Enter the lengths of the sides of the rectangle:  \n");
         scanf("%lf %lf",&a,&b);

         /*  Compute the area of the rectangle.  */
         area = a*b;

         /*  Print the value of the area.  */
         printf("The area of a rectangle with sides %5.3f and %5.3f"
                " is %5.3f. \n",a,b,area);


         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_29                                               */
      /*                                                                    */
      /*  This program finds the area of a triangle.                        */

      #include <stdio.h>

      int main(void)
      {
         /*  Declare variables.  */
         double h, b, area;

         /*  Enter the base and the height of the triangle.  */
         printf("Enter the base and the height of the triangle: \n");
         scanf("%lf %lf",&b,&h);

         /*  Compute the area of the triangle.  */
         area = 0.5*b*h;

         /*  Print the value of the area.  */
         printf("The area of a triangle with base %5.3f and height %5.3f "
              "is %5.3f. \n",b,h,area);

         /*  Exit program.  */
         return 0;
      }
      /*--------------------------------------------------------------------*/

      /*--------------------------------------------------------------------*/
      /*  Problem chapter2_30                                               */
      /*                                                                    */
      /*  This program finds the area of a circle.                          */

      #include <stdio.h>
      #define PI 3.141593

      int main(void)
      {
         /*  Declare variables.  */
         double r, area;

         /*  Enter the radius.  */
         printf("Enter the radius of the circle: \n");
         scanf("%lf",&r);

         /*  Compute the area of the circle.  */
         area = PI*r*r;

         /*  Print the value of the area.  */
         printf("The area of a cirlce with radius %5.3f is  %5.3f. \n",
                r,area);

         /*  Exit program.  */
         return 0;
      }

      /*--------------------------------------------------------------------*/
  • PowerPoint Figure Slides for Engineering Problem Solving with C, 4/E
    Etter
    ISBN-10: 013307921X • ISBN-13: 9780133079210
    ©2012 • Online • Live
    More info
    1. PowerPoint figure slides (ZIP) (3.4MB)
  • PowerPoint Lecture Slides for Engineering Problem Solving with C, 4/E
    Etter
    ISBN-10: 0132923696 • ISBN-13: 9780132923699
    ©2013 • Online • Live
    More info
    1. PowerPoint Presentations (ZIP) (4.5MB)
  • Source Code and Data Files for Engineering Problem Solving with C, 4/E
    Etter
    ISBN-10: 013292370X • ISBN-13: 9780132923705
    ©2013 • Online • Live
    More info
    1. Data sets and program files (ZIP) (0.6MB)

  • /*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
    /*  Program chapter4_10                                       */
    /*                                                            */
    /*  This program compares a recursive function and            */
    /*  a nonrecursive function for computing factorials.         */

    #include <stdio.h>

    int main(void)
    {
       /*  Declare variables and function prototypes.  */
       int n;
       long factorial(int k);
       long factorial_r(int k);

       /*  Get user input.  */
       printf("Enter positive integer: \n");
       scanf("%i",&n);

       /*  Compute and print factorials.  */
       printf("Nonrecursive: %i! = %li \n",n,factorial(n));
       printf("Recursive: %i! = %li \n",n,factorial_r(n));

       /*  Exit program.  */
       return 0;
    }
    /*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
    /*  This function computes a factorial with a loop.           */

    long factorial(int k)
    {
       /*  Declare variables.  */
       int j;
       long term;

       /*  Compute factorial with multiplication.  */
       term = 1;
       for (j=2; j<=k; j++)
          term *=j;

       /*  Return factorial value.  */
       return term;
    }
    /*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
    /*  This function computes a factorial recursively.           */

    long factorial_r(int k)
    {
       /*  Use recursive reference until k=0.  */
       if (k == 0)
          return 1;
       else
          return k*factorial_r(k-1);
    }

    /*––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
    Book cover

    engineering problem solving with c, 3rd edition by delores m. etter solutions manual and test bank





    I have sm(solutions manual ) and tb(test bank) files ,it is pdf or doc, if you need solutions manual or test bank ,please contact me by email. ggsmtb@gmail.com; if what u need isn’t in my list ,don’t worry ,only send the email with textbook name ,isbn , publisher to me ,then maybe I can find it for u. search it by Ctrl+F , thanks!!!! http://solutionsmanualtb.blogspot.com/
     it is my list ,please visit it!

    No comments:

    Post a Comment

    Linkwithin

    Related Posts Plugin for WordPress, Blogger...