fork(7) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. char digits[] = "0123456789abcdefABCDEF";
  5.  
  6. int main() {
  7. for (int i = 0; i < sizeof(digits)-1; ++i)
  8. {
  9. int d = digits[i];
  10. cout << (d & 0xf) + ((d & 0x40) >> 3) + ((d & 0x40) >> 6) << endl;
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
10
11
12
13
14
15