#CH014. 字符与ASCII码

字符与ASCII码

阅读程序,填写对应的输出结果

  1. cout << 'A' << ' ' << 'B' << ' ' << 'C' << endl;
    {{ input(1) }}
  2. cout << 'a' + 0 << endl;
    {{ input(2) }}
  3. cout << ' ' + 0 << endl;
    {{ input(3) }}
  4. cout << 'A' + 0 << endl;
    {{ input(4) }}
  5. cout << '0' + 0 << endl;
    {{ input(5) }}
  6. cout << 'a' - 'A' << endl;
    {{ input(6) }}
  7. cout << 'Y' - 'y' << endl;
    {{ input(7) }}
  8. cout << 'a' - ' ' << endl;
    {{ input(8) }}
  9. cout << '6' - '0' << endl;
    {{ input(9) }}
  10. cout << 2 + '0' << endl;
    {{ input(10) }}