2 条题解

  • 0
    @ 2022-10-2 10:45:07

    吐了,居然还有else if 这用法🙃🙃🙃

    • 0
      @ 2022-10-1 19:39:15

      你并不需要记住任何字符的Ascll码, 直接使用'x'就是x字符的ascll码

      #include<iostream>
      using namespace std;
      int T,n,m;
      #define ll long long
      const int maxn = 200005;
      const int mod = 998244353;
      int main() {
          char c; cin >> c;
          if(c >= 'a' && c <= 'z') c = c - 'a' + 'A';
          else c = c - 'A' + 'a';
          cout << c;
      }
      
      • 1

      信息

      ID
      312
      时间
      1000ms
      内存
      256MiB
      难度
      6
      标签
      递交数
      256
      已通过
      80
      上传者