Friday, July 14, 2017

Robert Lafore 4th edition Solution Manual Chapter 2 Programming Basics

Code:

1.  Assuming there are 7.481 gallons in a cubic foot, write a program that asks the user to enter a
  number of gallons, and then displays the equivalent in cubic feet.


#include<iostream.h>
using namespace std;
#define g_per_f 7.481

int main()
{
 

 float n_gallons;
 cout<<"Enter the number of gallons  : \xdb\t";
 cin >>n_gallons;
 cout<<"The equivalent in cubic feet : \xdb\t"<<n_gallons / g_per_f<<endl;
}
 Code:

2.  Write a program that generates the following table: 
    1990      135
    1991     7290
    1992    11300
    1993    16200


Use a single cout statement for all output.


#include<iostream.h>
using namespace std;

int main()
{

 int i, i_arr[4]={135,7290,11300,16200};

 for(i=1990;i<1994;i++) 
        {
         cout<<i<<setw(7)<<i_arr[i-1990]<<endl;
        }
 
 
}
  Code:

3.  Write a program that generates the following output: 
    10
    20
    19


  Use an integer constant for the 10, an arithmetic assignment operator to generate the 20, and a
  decrement operator to generate the 19. 
#include<iostream.h>
using namespace std;
#define ten 10

int main()
{

 //int ten = 10; //### use this line in the place of "define"
 //int second, third;
 //second = 2*ten; third = second-1;
 //cout<<ten<<endl<<second<<endl<<third<<endl;
 do{
 cout<<ten<<endl<<2*ten<<endl<<2*ten-1<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
  Code:

4.  Write a program that displays your favorite poem. Use an appropriate escape sequence for the
  line breaks. If you don’t have a favorite poem, you can borrow this one by Ogden Nash: 

    Candy is dandy,
    But liquor is quicker.

#include<iostream.h>
#include<conio.h>
using namespce std;
int main()
{
 
 do{
 cout<<"\tCandy is dandy\n\tBut liquor is quicker"<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
   Code:

5.  A library function, islower(), takes a single character (a letter) as an argument and returns a
  nonzero integer if the letter is lowercase, or zero if it is uppercase. This function requires the header
  file CTYPE.H. Write a program that allows the user to enter a letter, and then displays either zero or
  nonzero, depending on whether a lowercase or uppercase letter was entered.


#include<iostream.h>
#include<conio.h>
#include<ctype.h>
using namespace std;
int main()
{
 
 do{
 cout<<"Enter a letter : \xdb\t"<<endl;
 cout<<islower(getch())<<"\nthis value must be zero if you entred an uppercase letter and nonzero case else."<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
   Code:

6.  On a certain day the British pound was equivalent to $1.487 U.S., the French franc was $0.172,
  the German deutschemark was $0.584, and the Japanese yen was $0.00955. Write a program that 
  allows the user to enter an amount in dollars, and then displays this value converted to these four
  other monetary units.
#include<iostream.h>
#include<conio.h>
using namespace std;
#define pound         1.487
#define franc         0.172
#define deutschemark  0.584
#define yen           0.00955

int main()
{ 
 
 int dollars;

 do{
 cout<<"Enter the U.S. amout : \xdb\t";
 cin >>dollars;
 cout<<endl;
 cout<<"British  pound         =\t" << dollars / pound        <<endl;
 cout<<"French   franc         =\t" << dollars / franc        <<endl;
 cout<<"German   deutschemark  =\t" << dollars / deutschemark <<endl;
 cout<<"Japanese yen           =\t" << dollars / yen          <<endl;
 //cout<<"\nAnother operation ? (y/n) : ";  //use this line to continue using the programme.
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
  Code:

7.  You can convert temperature from degrees Celsius to degrees Fahrenheit by multiplying by 9/5
  and adding 32. Write a program that allows the user to enter a floating-point number representing
  degrees Celsius, and then displays the corresponding degrees Fahrenheit.



#include<iostream.h>
#include<conio.h>
using namespace std:;
int main()
{
 
 float c_temp;

 do{
 cout<<"Enter the degrees Celsius\t\t\t\xdb ";
 cin >>c_temp;
 cout<<"The corresponding degrees Fahrenheit is :\t\xdb "<<((9/5)*c_temp)+32<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
Code:

8.  When a value is smaller than a field specified with setw(), the unused locations are, by default,
  filled in with spaces. The manipulator setfill() takes a single character as an argument and causes this
  character to be substituted for spaces in the empty parts of a field. Rewrite the WIDTH program so
  that the characters on each line between the location name and the population number are filled in
  with periods instead of spaces, as in Portcity.....2425785


#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
using namespace std;
int main()
{
 long pop1=2425785, pop2=47, pop3=9761;
 
 do{
 cout << setw(8) << "LOCATION" << setw(12)
      << "POPULATION" << endl
         << setw(8) << "Portcity" << setw(12) << setfill('.') << pop1 << endl
         << setw(8) << "Hightown" << setw(12) << setfill('.') << pop2 << endl
         << setw(8) << "Lowville" << setw(12) << setfill('.') << pop3 << endl;
    cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
  Code:

9.  If you have two fractions, a/b and c/d, their sum can be obtained from the formula 

  a      c      a*d + b*c
 --- + ---  =  -----------
  b      d         b*d



 For example, 1/4 plus 2/3 is 
  1     2       1*3 + 4*2       3 + 8       11
 --- + ---  =  -----------  =  -------  =  ----
  4     3          4*3            12        12



 Write a program that encourages the user to enter two fractions, and then displays their sum in
 fractional form. (You don’t need to reduce it to lowest terms.) The interaction with the user might
 look like this: 

 Enter first fraction: 1/2
     Enter second fraction: 2/5
     Sum = 9/10


 You can take advantage of the fact that the extraction operator (>>) can be chained to read in more
 than one quantity at once: 
 cin >> a >> dummychar >> b;


#include<iostream.h>
#include<conio.h>
using namespace std;
int main()
{
 
 int first[2], last[2];
 char operation; //In this sample programme not needed but generally for error detection only!
 
 do{
 cout<<"Enter first  fraction: ";
 cin >>first[0]>>operation>>last[0]; //if (operation != '/') {raise error event}
 cout<<"Enter second fraction: ";
 cin >>first[1]>>operation>>last[1]; //if (operation != '/') {raise error event}
 cout<<"Sum = "<<(first[0]*last[1] + last[0]*first[1])<<operation<<(last[0]*last[1])<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
Code:

10.  In the heyday of the British empire, Great Britain used a monetary system based on pounds,
  shillings, and pence. There were 20 shillings to a pound, and 12 pence to a shilling. The notation for
  this old system used the pound sign, £, and two decimal points, so that, for example, £5.2.8 meant
  5 pounds, 2 shillings, and 8 pence. (Pence is the plural of penny.) The new monetary system,
  introduced in the 1950s, consists of only pounds and pence, with 100 pence to a pound (like U.S.
  dollars and cents). We’ll call this new system decimal pounds. Thus £5.2.8 in the old notation is
  £5.13 in decimal pounds (actually £5.1333333). Write a program to convert the old pounds-
  shillings-pence format to decimal pounds. An example of the user’s interaction with the program
  would be 

    Enter pounds: 7
    Enter shillings: 17
    Enter pence: 9
    Decimal pounds = £7.89
  In both Borland C++ and Turbo C++, you can use the hex character constant ‘\x9c’ to represent the
  pound sign (£). In Borland C++, you can put the pound sign into your program directly by pasting it
  from the Windows Character Map accessory.



#include<iostream.h>
#include<conio.h>
using namespace std;
int main()
{
 int pounds, shillings, pence;
 do{
 cout<<"Enter pounds     : ";
 cin >>pounds;
 cout<<"Enter shillings  : ";
 cin >>shillings;
 cout<<"Enter pence      : ";
 cin >>pence;
 pence = ((shillings*12)+pence)*100/240;
 //To make the programme more really (pence must not pass value 100).
 if (pence >= 100){
  //shillings here is only a gate, not by it's mean at all.
  shillings = pence%100;
  pounds += (pence-shillings)/100;
  pence = shillings;}
 cout<<"Decimal pounds   = \x9c"<<pounds<<"."<<pence<<endl;
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
Code:

11.  By default, output is right-justified in its field. You can left-justify text output using the
  manipulator setiosflags(ios::left). (For now, don’t worry about what this new notation means.) Use
  this manipulator, along with setw(), to help generate the following output:
  
  Last name    First name    Street address    Town    State
      -----------------------------------------------------------
      Jones    Bernard    109 Pine Lane    Littletown    MI
      O’Brian    Coleen    42 E. 99th Ave.    Bigcity    NY
      Wong    Harry    121-A Alabama St.    Lakeville    IL


#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
using namespace std;
int main()
{
 
 char *l_name[3] = {"Jones", "O'Brian", "Wong"},
   *f_name[3] = {"Bernard", "Coleen", "Harry"},
   *adress[3] = {"109 Pine Lane", "42 E. 99th Ave.", "121-A Alabama St."},
   *town[3]   = {"Littletown", "Bigcity", "Lakeville"},
   *state[3]  = {"MI", "NY", "IL"};
 
 do{
 cout<<setiosflags(ios::left)<<setw(11)<<"Last name"
                          <<setw(12)<<"First name"
        <<setw(20)<<"Street adress"
        <<setw(12) <<"Town"
        <<setw(7) <<"State"
        <<endl;
 for(int i=0;i<60;i++) cout<<"-";
 for(int j=0;j<3;j++){
  cout<<endl<<setiosflags(ios::left)<<setw(11)<<l_name[j]
            <<setw(12)<<f_name[j]
            <<setw(20)<<adress[j]
            <<setw(12)<<town[j]
            <<setw(7) <<state[j]
            <<endl;}
 cout<<"\n !Press c to continue or any key to exit."<<endl<<endl;
 }while(getch()=='c');
}
  12.  Write the inverse of Exercise 10, so that the user enters an amount in Great Britain’s new
  decimal-pounds notation (pounds and pence), and the program converts it to the old pounds-
  shillings-pence notation. An example of interaction with the program might be
  
    Enter decimal pounds: 3.51
    Equivalent in old notation = £3.10.2.



  Make use of the fact that if you assign a floating-point value (say 12.34) to an integer variable, the
  decimal fraction (0.34) is lost; the integer value is simply 12. Use a cast to avoid a compiler
  warning. You can use statements like 

    float decpounds;    // input from user (new-style pounds)
    int pounds;         // old-style (integer) pounds
    float decfrac;      // decimal fraction (smaller than 1.0)

  pounds = static_cast<int>(decpounds); // remove decimal fraction
    decfrac = decpounds - pounds;  // regain decimal fraction
You can then multiply decfrac by 20 to find shillings. A similar operation obtains pence.


#include<iostream.h>
#include<conio.h>
using namespace std;
int main()
{
  float decpounds;    // input from user (new-style pounds)
    int pounds, shillings;          // old-style (integer) pounds & shillings
    float decfrac;     // decimal fraction (smaller than 1.0)
 
 
  cout<<"Enter decimal pounds: ";
 //cin >>pounds>>var_char>>decfrac; //I think this way is better!
 cin >>decpounds;
 pounds = static_cast<int>(decpounds); // remove decimal fraction
 //user should enter valid data , pence entred smaller than 100.
    decfrac = 240*(decpounds - pounds);  // regain decimal fraction
 shillings = (static_cast<int>(decfrac))%12;                  //Ignore fracions in pence.
 decfrac = static_cast<int>((decfrac-shillings)/12);          //Ignore fracions in pence.
 cout<<"Equivalent in old notation = \x9c"<<pounds<<"."<<decfrac<<"."<<shillings<<endl;
 
Share:

0 comentários:

Post a Comment