周日班 1030 cpp 笔记

第12 课 求商取余 操作

交换一个两位数的个位与十位数

  1. #include <iostream>
  2. #include <cstdio>
  3. using namespace std;
  4. int main(){
  5. int num = 80; // 8 08 回文数 12321 12344321 reverse()
  6. int gw = num % 10;
  7. int sw = num / 10;
  8. cout << gw * 10 + sw << endl;
  9. return 0;
  10. }

方法二:

  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. char sw ,gw ;
  5. cin >> sw >> gw ;
  6. cout << gw >> sw;
  7. return 0;
  8. }

字符与Ascii

  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. // char ch = 'A';
  5. // ch += 1;
  6. // cout << ch;
  7. // A1 , B , 66
  8. int ch = 'A';
  9. ch += 1;
  10. cout << ch;
  11. // 输出结果由 容器(变量 ch)类型决定
  12. return 0;
  13. }