Browse Source

hexoct2

master
DEW 2 years ago
parent
commit
d703bc2fe6
  1. BIN
      exceed
  2. 27
      exceed.cpp
  3. BIN
      hexoct1
  4. 13
      hexoct1.cpp
  5. BIN
      hexoct2
  6. 16
      hexoct2.cpp

BIN
exceed

Binary file not shown.

27
exceed.cpp

@ -0,0 +1,27 @@
#include <iostream>
#define ZERO 0
#include <climits>
int main()
{
using namespace std;
short sam = SHRT_MAX;
unsigned short sue = sam;
cout << "Sam has " << sam << " dolloars and Sue has " << sue;
cout << " dollars deposited." << endl
<< "Add $1 to each account." << endl
<< "Now ";
sam = sam + 1;
sue = sue + 1;
cout << "Sam has " << sam << " dolloars and Sue has " << sue;
cout << " dollars deposited.\nPoor Sam!" << endl;
sam = ZERO;
sue = ZERO;
cout << "Sam has " << sam << " dolloars and Sue has " << sue;
cout << " dollars deposited." <<endl;
cout << "Take $1 from each account." <<endl <<"Now ";
sam = sam -1;
sue = sue -1;
cout << "Sam has " << sam << " dolloars and Sue has " << sue;
cout << " dollars deposited." <<endl << "Lucky Sue!" <<endl;
return 0;
}

BIN
hexoct1

Binary file not shown.

13
hexoct1.cpp

@ -0,0 +1,13 @@
#include <iostream>
int main()
{
using namespace std;
int chest = 42;
int waist = 0x42;
int inseam = 042;
cout << "Monsieur cuts a striking figure!\n";
cout << "chest = " << chest << " (42 in decimal)\n";
cout << "waist = " << waist << " (0x42 in hex)\n";
cout << "inseam = " << inseam << " (042 in octal)\n";
return 0;
}

BIN
hexoct2

Binary file not shown.

16
hexoct2.cpp

@ -0,0 +1,16 @@
#include <iostream>
using namespace std;
int main()
{
int chest = 42;
int waist = 42;
int inseam = 42;
cout << "Monsieur cuts a striking figure!" << endl;
cout << dec; //default
cout << "chest = " << chest << " (decimal for 42)" << endl;
cout << hex;
cout << "waist = " << waist << " (hexadecimal for 42)" << endl;
cout << oct;
cout << "inseam = " << inseam << " (octal for 42)" << endl;
return 0;
}
Loading…
Cancel
Save