2 条题解

  • 0
    @ 2024-5-11 19:47:36

    #include<bits/stdc++.h> using namespace std; int main(){ // C++ L15 a+b int a,b; scanf("%X%X",&a,&b); //以16进制输入整数 cout<<a+b; return 0; }

    • 0
      @ 2024-4-30 10:45:25
      #include<bits/stdc++.h>
      using namespace std;
      int main(){ // C++ L15 a+b
          int a,b;
          scanf("%X%X",&a,&b); //以16进制输入整数
          cout<<a+b;
          return 0;
      }
      
      • 1

      信息

      ID
      1221
      时间
      1000ms
      内存
      256MiB
      难度
      9
      标签
      (无)
      递交数
      8
      已通过
      7
      上传者