Exemplo n.º 1
0
int main(int argc, char const *argv[])
{
    Stonewt pavarotti = 260;
    Stonewt wolfe(285.7);
    Stonewt taft(21, 8);

    cout << "The tenor weighed ";
    pavarotti.show_stn();
    cout << "The detective weighed ";
    wolfe.show_stn();
    cout << "The President weighed ";
    taft.show_lbs();
    pavarotti = 265.8;
    taft = 325;
    cout << "After dinner, the tenor weighed ";
    pavarotti.show_stn();
    cout << "Afer dinner, the President weighed ";
    taft.show_lbs();
    display(taft, 2);
    cout << "The wrestler weighed even more.\n";
    display(422, 2);
    cout << "No stone left unearned\n";

    double p_wt = pavarotti;
    cout << "Convert to double => ";
    cout << "pavarotti : " << p_wt << " pounds.\n";
    cout << "Convert to int => ";
    cout << "pavarotti: " << int(pavarotti) << " pavarotti.\n";

    return 0;
}
Exemplo n.º 2
0
int main(int argc, char *argv[]) {
  // a syntax for initializing a class object when using a
  // constructor with one argument. This is equivalent to the
  // other two forms:
  // standard syntax forms for initializing class objects
  // Stonewt incognito(275);
  // Stonewt incognito = Stonewt(275);
  Stonewt incognito = 275; // uses constructor to initialize
  Stonewt wolfe(285.7); // same as Stonewt wolfe = 285.7
  Stonewt taft(21, 8);

  cout << "The celebrity weighed ";
  incognito.show_stn();
  cout << "The detective weighted ";
  wolfe.show_stn();
  cout << "the President weighed ";
  taft.show_lbs();

  incognito = 276.8; // uses constructor for conversion
  taft = 325; // same as taft = Stonewt(325);
  cout << "After dinner, the celebrity weighed ";
  incognito.show_stn();
  cout << "After dinner, the President weighed ";
  taft.show_lbs();

  display(taft, 2);
  cout << "The wrestler weighed even more.\n";
  display(422, 2); // convert 422 to double, then to Stonewt
  cout << "No stone left unearned\n";

  return 0;
}
Exemplo n.º 3
0
int main()
{
    Stonewt incognito = 275;    // uses constructor to initialze
    Stonewt wolfe(285.7);       // same as Stonewt wolfe = 285.7
    Stonewt taft(21, 8);

    cout << "The celebrity weighed ";
    incognito.show_stn();
    cout << "The detective weighed ";
    wolfe.show_stn();
    cout << "The President weighed ";
    taft.show_lbs();

    incognito = 276.8;      // uses constructor for conversion;
    taft = 325;             // same as taft = Stonewt(325);
    cout << "After dinner, the celebrity weighed ";
    incognito.show_stn();
    cout << "After dinner, the President weighed ";
    taft.show_lbs();
    display(taft, 2);
    cout << "The wrestler weighed even more.\n";
    display(422, 2);
    cout << "No stone left unearned\n";
    return 0;
}
Exemplo n.º 4
0
int main( int argc, char *argv[] )
{
	Stonewt 	incognito = 275;
	Stonewt 	wolfe(285.7);
	Stonewt 	taft(21, 8);

	cout << "The celebrity weigned ";
	incognito.show_stn();
	cout << "The detective weighed ";
	wolfe.show_stn();
	cout << "The President weighed ";
	taft.show_lbs();
	incognito = 276.8;
	taft = 325;
	cout << "After dinner, the celebrity weighed ";
	incognito.show_stn();
	cout << "After dinner, the President weighed ";
	taft.show_lbs();
	display(taft, 2);
	cout << "The wrestler weighed even more.\n";
	display(422, 2);
	cout << "No stone left unearned\n";

	return 0;
}
Exemplo n.º 5
0
void display(const Stonewt & st, int n)
{
    for (int i = 0; i < n; i++)
    {
        cout << "Wow! ";
        st.show_stn();
    }
}
Exemplo n.º 6
0
int main(void)
{
	Stonewt pavarotti = 260;
	Stonewt wolfe(285.7);
	Stonewt taft(21, 8);

	cout << "The tenor weighed ";
	pavarotti.show_stn();
	cout << "The President weighed ";
	taft.show_lbs();
	pavarotti = 265.8;
	taft = 325;
	cout << "After dinner, the tenor weighted ";
	pavarotti.show_stn();
	display(taft, 2);
	cout << "The wretler weighted even more.\n";
	display(422,2);
	cout << "Noo stone left unearned\n";
	return 0;
}
Exemplo n.º 7
0
int main()
{
    Stonewt pavarotti = 260; // uses constructor to initialize
    Stonewt wolfe(285.7);    // same as Stonewt wolfe = 285.7;
    Stonewt taft(21, 8);

    cout << "The tenor weighed ";
    pavarotti.show_stn();
    cout << "The detective weighed ";
    wolfe.show_stn();
    cout << "The President weighed ";
    taft.show_lbs();
    pavarotti = 265.8;       // uses constructor for conversion
    taft = 325;             // same as taft = Stonewt(325);
    cout << "After dinner, the tenor weighed ";
    pavarotti.show_stn();
    cout << "After dinner, the President weighed ";
    taft.show_lbs();
    display(taft, 2);
    cout << "The wrestler weighed even more.\n";
    display(422, 2);
    cout << "No stone left unearned\n";
    return 0;
}